【git】合并git仓库并保留commit记录

本文详细介绍了如何在合并两个Git仓库时保留完整的commit记录,包括没有同名文件和存在同名文件的情况。通过生成patch文件并在目标仓库中应用,确保合并过程不丢失历史信息。操作步骤涉及git format-patch、git am等命令,同时强调了处理同名文件的注意事项。
摘要由CSDN通过智能技术生成

1. 合并git仓库并保留commit记录

从网上查到的使用git merge的方式不能满足需求。就改成了将一个仓库的历史记录生成patch,再在另一个仓库中使用git am应用patch来实现合并仓库。

仓库目录结构如下,需要将repoBBB中的提交记录合并到repoAAA中,之后就可以删除repoBBB了。

.
├── patch
├── repoAAA
└── repoBBB

1.1. 没有同名文件

两个参考下没有同名文件(包括.gitignore等以.开头的文件),或同名文件已经移动或重命名,并commit。

需要注意,repoAAA中不能存在任何repoBBB历史中曾出现过的文件,否则会导致patch应用失败。

rm -f patch/*
cd repoAAA
# 把$BRANCH分支所有commit都生成patch
git format-patch --root -o ../patch  $BRANCH


cd repoBBB
# 防止之前有未完成的操作
git am --abort
# 应用所有patch
git am ../patch/*
git push

1.2. 存在同名文件

需要首先将同名文件用新仓库中的文件覆盖。

需要注意,repoAAA中不能存在任何repoBBB历史中曾出现过的文件,否则会导致patch应用失败。

rm -f patch/*
cd repoAAA

first_commit=$(git rev-list --max-parents=0 HEAD)
# first_commit=$(git log --reverse | head -1 | cut -d ' ' -f 2)

# 除第一次提交之外,其他的commit都生成patch
git format-patch -o ../patch  ${first_commit}
# 回退到第一次commit时的状态,为了后续覆盖repoBBB中的同名文件使用
git reset --hard  ${first_commit}


cd repoBBB
cp -fr ../repoAAA/*   ./
# 使用repoBBB中的文件覆盖当前目录的同名文件
cp -fr ../repoAAA/.*  ./
git add .
# 这次commit是为了保证repoAAA中的文件与repoBBB的${first_commit}一致,以便后续应用patch
git commit -m "message"

git am --abort
git am ../patch/*
git push
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值