标签:
最近Fork了一个很不错的C++实现的算法集(https://github.com/xtaci/algorithms),如何与开源代码同步的问题也就产生了,同步方式如下:
1 首先,在自己的GitHub上Fork此开源代码,然后Clone到本地
git clone https://github.com/lanbing510/algorithms.git
#添加一个远程库连接到本地,命名为algorithms git remote add algorithms https://github.com/xtaci/algorithms #从远程分支拉取代码到本地 git pull algorithms master #push到自己的库里 git push
标签:
原文地址:http://blog.csdn.net/lanbing510/article/details/45832887