码迷,mamicode.com
首页 > 其他好文 > 详细

从 github 上 fork repositories 后,如何和原仓库同步?

时间:2016-11-25 12:31:47      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:ast   hub   pos   github   git   master   style   需要   push   

1. 首先要先确定一下是否建立了主repo的远程源:

git remote -v

2. 如果里面只能看到你自己的两个源(fetch 和 push),那就需要添加主repo的源:

git remote add upstream URL(原始库的URL)

此时再执行 "git remote -v" 可以看到upstream了。

3. 如果想与主repo合并:

1 git fetch upstream
2 
3 git merge upstream/master

 

从 github 上 fork repositories 后,如何和原仓库同步?

标签:ast   hub   pos   github   git   master   style   需要   push   

原文地址:http://www.cnblogs.com/HarrisonHao/p/6100816.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!