标签: git version-control git-submodules
我想合并一个子模块,直到将特定的提交与我提交过的较旧版本的子模块合并,并且不希望其被删除
答案 0 :(得分:0)
最适合我的解决方案是
git fetch git checkout FETCHED_HEAD git checkout -b newbranch commitSHA1 git checkout master git merge newbranch