git、repo、gerrit之间的关系
http://blog.youkuaiyun.com/niyaofa/article/details/6652101
Gerrit 代码审核服务器的工作流和原理
http://zoomq.qiniudn.com/ZQScrapBook/ZqFLOSS/data/20110712171147/
jenkins+gerrit+Git 搭建CI系统
http://zengestudy.blog.51cto.com/1702365/1786555
Gerrit代码Review入门实战
https://zhuanlan.zhihu.com/p/21482554
Git书籍
https://git-scm.com/book/zh/v2
已有的repo修改为新的
先删后加:
git remote rm origin
git remote add origin [url]
git pull 报错:
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details
解决方案:
git branch master origin/master
这样在我们每次想push或者pull的时候,只需要 输入git push 或者git pull即可。
在此之前,我们必须要指定想要push或者pull的远程分支。
git push origin master
git pull origin master.
原文链接:http://josh-persistence.iteye.com/blog/2217847