标签:
git代码托管的优秀工具之一, 其工作原理和svn截然不同。一旦拥有主干master分支权限, 只要在本地拉取主干分支, 可以随时随地切换分支。
它拥有众多优点,eg :支持在断网的情况下, 切换创建分支.
git clone "分支"
git checkout "分支"
git branch
git status
git add .
git commit -m‘注释‘
git push origin "分支"
git pull
标签:
原文地址:http://www.cnblogs.com/chenmo-xpw/p/5924293.html