Skip to content

Latest commit

 

History

History
48 lines (28 loc) · 816 Bytes

fork同步.md

File metadata and controls

48 lines (28 loc) · 816 Bytes

如果 fork 了一个别人的仓库,怎样与源仓库保持同步?

参考该链接

1:fork源仓库
2:clone到本地
git clone [email protected]:username/repositoryname.git //clone自己fork的repo地址
3:添加源仓库路径
git remote add upstream https://github.com/owername/pouch.git //add原作者reop地址
4:源仓库路径设置
git remote set-url --push upstream no-pushing
5:获取源仓库的最新commit
git fetch upstream
6:将最新commit合并到本地
git merge upstream/master
7:将本地代码pull到自己的github
git pull

这时三个仓库就已经保持同步了。