One minute
Fork过来的项目拉取源项目的更新
- 在
Fork
的代码库中添加上游代码库的remote
源,其中upstream
表示上游代码库名,可以任意:
git remote add upstream https://github.com/lj2007331/lnmp.git
将本地的修改提交
commit
在每次
Pull Request
前做如下操作,即可实现和上游版本库的同步。
git remote update upstream
git rebase upstream/{branch name}
需要注意的是在rebase
操作之前,一定要将checkout
到{branch name}
所指定的branch
,
Push
代码
23 Words
2016-05-26 14:08 +0000
阅读更多