从github到github
打开你想fork的项目界面,点击fork按钮即可将此项目fork到你的github账户上;
在不同的平台之间fork
- 在平台B上新建一个空的仓库 eg:git@github.com:shankusu2017/uhttpd-openwrt.git,并 clone 到本机上;
- 在本机上将新创建的仓库的"上游"设置为你原本想 fork 的地址 eg:git remote add upstream https://git.openwrt.org/project/uhttpd.git
- 将平台A的上游代码同步到本机上 git pull upstream master
- 将本机上最新的代码提交到自己的平台B仓库中 git push origin master
同步上游的tags
- 拉取上游平台A上的的tags: git fetch upstream
- 提交到自己的平台B上 git push –tags