同步Github Fork的项目
文章目录
Track
添加上游 upstream
:
git remote add upstream git@github.com:user/project.git
Update
每次更新时,执行下列命令
git fetch upstream
git rebase upstream/master
有文件冲突时会提示,解决冲突后用以下命令继续rebase
:
git rebase --continue
这里使用rebase而不是merge主要是因为使用merge的话会使git的线变得复杂 一般使用rebase只会有一条线
文章作者 sdvcrx
上次更新 2014-12-03