假设我们需要把仓库A合并到仓库B
首先cd到仓库A
cd [仓库A本地目录]
// 向仓库A添加一个源
git remote add [仓库B名称] [仓库B所在远程地址]
// 拉取仓库B 由于是合并过来的 他们之前没有联系 所以使用 `--allow-unrelated-histories` 来强制执行
git pull [仓库B名称] [分支] --allow-unrelated-histories
// 执行后会弹出一个编辑框 要我们输入为什么强制 pull 可以不管 直接 :wq保存退出就好
// pull下来之后再推送到B的地址就可以了
git push [仓库B名称] [分支]
附:git 常用命令
网友评论