1. 如何使用git创建项目,创建分支
http://blog.csdn.net/wfdtxz/article/details/7973608
2. git 比较同一文件的不同的两个版本之间的差异
git diff commit_id1 commit_id2 -- filename
3. 如何使用
http://www.jianshu.com/p/8d26730386f3
1、在github上创建项目
2、使用git clone https://github.com/xxxxxxx/xxxxx.git克隆到本地
3、编辑项目
4、git add . (将改动添加到暂存区)
5、git commit -m "提交说明"
6、git push origin master 将本地更改推送到远程master分支。
这样你就完成了向远程仓库的推送。
4. Git 分支 - 分支的新建与合并
https://git-scm.com/book/zh/v2/Git-分支-分支的新建与合并
5. 别的代码审查软件
Gerrit http://www.cnblogs.com/lexuele/p/5133601.html