gitBash命令行:
 cd d
 git clone gitserver@192.168.1.78:/gitrepo/Aries
gitk
 git branch develop 创建本地分支
 git branch -d develop 删除本地分支
git branch -a 查看所有本地和远程分支
 git status  状态
提交分支
 git add .  加入到提交队列
 git commit -m "注释"  提交代码到远程分支
 git push origin head:refs/for/master 合并分支到master
切换分支
 git checkout develop  
 git pull --rebase origin develop
 git push origin develop
 合并分支
 git checkout master
 git pull origin master(防止别人提交了未更新)
 git merge --no-ff develop
 暂存本地修改文件
 git stash save
 拉取当前分支代码
 git pull --rebase   
 释放本地修改文件
 git stash pop
 Git常用命令:
 http://www.cnblogs.com/cspku/articles/Git_cmds.html
Git分支操作
 http://blog.csdn.net/arkblue/article/details/9568249/