美文网首页
使用 git-filter-repo 重写git记录

使用 git-filter-repo 重写git记录

作者: 耐撕鹏鹏 | 来源:发表于2021-04-22 22:17 被阅读0次

    最近在做项目的迁移,用到了git-filter-repo重写git记录。以下是详细的操作步骤,希望可以帮助到大家。

    准备全新的 work 仓库A、work-new空仓库B、 work 仓库C。

    1.安装git-filter-repo,brew install git-filter-repo。(https://github.com/newren/git-filter-repo

    2.将work仓库 A、C,切换到master分支。

    3.在work A中执行 git filter-repo --path src/ --path pom.xml --path .gitignore(--path为要保留的目录,执行完成后会删除所有无关的文件及其git记录)。

    4.使用git remote -v 查看work-newB 的远程地址,得到 origin ssh://*** 。

    5.将workA的git地址关联至work-newB 仓库,使用命令:git remote add origin ssh:***。

    6.在workA中推送代码至work-newB仓库的指定分支,使用命令:git push origin refs/heads/master:**,即:git push origin 本地分支:远程分支。

    7.为保证代码准确性,将work-newB的 src/等目录移除,并从work C项目中拷贝相同的目录覆盖至work-newB,如有差异,则需要检查一下是否有问题。

    8.合并master时可能会报错,提示无法合并无关分支,需要增加 --allow-unrelated-histories 参数解决。

    相关文章

      网友评论

          本文标题:使用 git-filter-repo 重写git记录

          本文链接:https://www.haomeiwen.com/subject/ngqqrltx.html