1. 提交流程
git branch mytest
git checkout mytest
git add [file]
git commit -m "command"
git pull
git push origin mytest : 本地分支直接提交到远程
相对应的文件夹自动提交
2. git 删除文件
git rm [file]
git commit
git pull
git push
3. push commit 区别
git commit是将本地修改过的文件提交到本地库中。
git push是将本地库中的最新信息发送给远程库。
阅读(1247) | 评论(0) | 转发(0) |