赞
踩
git clone //加上仓库的连接
git ls-remote
会要求输入用户名和密码
git add -A //-A表示把全部修改都上传
git commit -m ""//双引号里填对代码的改动说明
git config --global user.email "" //双引号里填自己的邮箱
git config --global user.name " " //填git识别你的名字
git push origin master//把代码推送到master节点
//这个时候会要用户名和密码
git rm -r --cached //后面加文件名字,有扩展名的要加扩展名
然后
git commit -m ""
git push origin master
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。