记录下,使用若依v3.8.7版本,后续要升级到v3.8.8版本,本地仓库合并若依仓库的新版本的提交记录:
1. 添加远程仓库
git remote add other-repo <另一个仓库的URL>
2.拉取最新
git fetch other-repo
3.合并对应的分支
git merge other-repo/<branch>
4. 找到要合并的提交的哈希值 (这步可忽略),注意哈希值要自己和仓库的核对下
git log other-repo/<branch>
5. 使用 cherry-pick 合并特定提交:
git cherry-pick <commit-hash>
6. 解决冲突 提交
标签:git,提交,仓库,合并,repo,other,本地 From: https://www.cnblogs.com/shyhuahua/p/18279345