http://rogerdudler.github.io/git-guide/index.zh.html
已经连接上了某个远程仓库,如何将改动提交:
将文件myfile.txt添加到缓冲区:
git add myfile.txt (git add *)
提交改动:
git commit -m "add a test file"
提交到远程仓库:
git push origin master (可以把master换成任意分支)
http://rogerdudler.github.io/git-guide/index.zh.html
已经连接上了某个远程仓库,如何将改动提交:
将文件myfile.txt添加到缓冲区:
git add myfile.txt (git add *)
提交改动:
git commit -m "add a test file"
提交到远程仓库:
git push origin master (可以把master换成任意分支)