前言
在开发过程,如果想把代码从某一个仓库转移到另外一个仓库,比如,你现在在gitee上面有一个zhd-desktop的仓库,后面你不想要了,你想把它放到GitHub上面,怎么办才能保留原来的提交信息和分支呢?
解决
命令行
在原来的仓库里边添加远端仓库链接
1 | git remote add upstream https://github.com/hywing/zhd-desktop.git |
往upstream推送develop分支
1 | git push upstream develop -f |
tortoiseGit
先添加远程仓库
选择远程仓库后push