GIT中常用的命令

最近项目中使用到了GIT,所以记录一下GIT中常用的命令。

GIT使用的客户端有Git Bash:http://code.google.com/p/msysgit/

还有乌龟TortoiseGit:http://code.google.com/p/tortoisegit/

 

git status查看本地修改与服务器的差异。

git add .将这些差异文件添加,这样就可以提交了。

git commit –m “这里是注释”提交更改到服务器。

git checkout master更改到master库。

git pull将服务器最新的更改获取到本地。

git merge local master将本地的local合并到远程的master上。

git push origin master正式提交到远程的master服务器上。

posted @ 2016-03-01 11:32  Struts-pring  阅读(117)  评论(0编辑  收藏  举报