下载最新代码 : git clone http://
获取最新代码:
git pull
增加文件:
git add xxx
git commit -m"add file"
git push origin
删除文件:
git rm xxx
git commit -m"rm file"
git push origin
修改并上传代码:
git commit -m"update"
git push origin
建立tag:
git tag -a "v1.0.0"
git push origin v1.0.0
删除tag:
git tag -d "v1.0.0"
git push origin :v1.0.0
阅读(921) | 评论(0) | 转发(0) |