背景:由于拆分微前端,需要将最新代码合并到已经拆分的微前端项目,即需要将 2 个项目合并。
git branch
git remote -v
git remote remove origin //origin 远程分支别名
//当前默认仓库别名为origin
git remote add origin http://km-git1.kemai.cn/youshu/youshu-smallshop-frontend.git
//其他仓库别名为other
git remote add other http://km-git1.kemai.cn/youshu/xdd-front-end.git
//从默认的远程仓库切出一个新分支
git checkout -b master origin/master
//从其他的远程仓库切出一个新分支(
//注意同一个仓库中不能存在2个同名分支,所以取个别名,但是同一个仓库中不同的分支可以关联多个远程仓库。
//一个本地分支只能关联一个远程仓库
git checkout -b other other/master
//切换到关联默认仓库远程master分支的本地分支master
git checkout master
//切换到关联其他仓库远程master分支的本地分支other
git checkout other
git fetch --all //更新所有仓库
git fetch origin //更新指定仓库
git fetch other //更新指定仓库
/**更新主仓库代码**/
//先切换到other
git checkout master
//从默认的远程仓库更新
git pull origin master
/**更新子仓库代码**/
//先切换到other
git checkout other
//从其他的远程仓库更新
git pull other master
//推送到默认的远程仓库
git push -u origin master
//推送到其他的远程仓库
git push -u other master
git branch -D XXX //强制删除
git branch -m <branch>
更多基础命令请查看 https://www.yuque.com/docs/share/8bd713d2-0bc8-4758-85ba-5cb6ca764b92?# 《常见的 git 命令》
现在有两个仓库 [leader/kkt](https://www.leader755.com) (主仓库)和 [leader/kkt-next](https://www.leader7555.com)(子仓库) 我们需要将 kkt-next 仓库合并到 kkt 并保留 kkt-next 的所有提交内容。
git clone git@github.com:kktjs/kkt.git
//git remote add origin git@github.com:kktjs/kkt.git
git remote add other git@github.com:kktjs/kkt-next.git
git fetch other
git checkout -b other other/master
git checkout master
/**更新主仓库代码**/
//先切换到other
git checkout master
//从默认的远程仓库更新
git pull origin master
/**更新子仓库代码**/
//先切换到other
git checkout other
//从其他的远程仓库更新
git pull other master
git merge other
# 如果第 7 步报错 `fatal: refusing to merge unrelated histories`
# 请执行下面命令 ↓↓↓↓↓↓↓↓↓↓↓↓↓↓↓
git merge other --allow-unrelated-histories
在合并时有可能两个分支对同一个文件都做了修改,这时需要解决冲突,对文本文件来说很简单,根据需要对冲突的位置进行处理就可以。对于二进制文件,需要用到如下命令:
git checkout --theirs YOUR_BINARY_FILES # 保留需要合并进来的分支的修改
git checkout --ours YOUR_BINARY_FILES # 保留自己的修改
git add YOUR_BINARY_FILES
[https://segmentfault.com/a/1190000021919753](https://segmentfault.com/a/1190000021919753)