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

GitHub同步已经Fork的开源代码

时间:2015-05-19 00:47:05      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

最近Fork了一个很不错的C++实现的算法集(https://github.com/xtaci/algorithms),如何与开源代码同步的问题也就产生了,同步方式如下:


1 首先,在自己的GitHub上Fork此开源代码,然后Clone到本地

git clone https://github.com/lanbing510/algorithms.git

2 需要同步时,执行以下命令

#添加一个远程库连接到本地,命名为algorithms
git remote add algorithms https://github.com/xtaci/algorithms
#从远程分支拉取代码到本地  
git pull algorithms master  
#push到自己的库里  
git push

完成更新

GitHub同步已经Fork的开源代码

标签:

原文地址:http://blog.csdn.net/lanbing510/article/details/45832887

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