最近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
完成更新
时间: 2024-12-20 09:20:05