git filter-branch duplicated commits

霸气de小男生 提交于 2019-12-10 05:33:42

问题


I was rewriting my git repository's author history like explained here, however my original structure turned from

D (user 2) <-- master
|
C (user 2)                E (user 1) <-- branch 1
|                         |
+-------------------------+
|
B (user 1)
|
A (user 1)

into

D (user 1) <-- master     G (user 2, original/refs/heads/master)
|                         |
C (user 1)                F (user 2)                E (user 1) <-- branch 1
|                         |                         |
+-------------------------+-------------------------+
|
B (user 1)
|
A (user 1)

So the question is, how can I get rid of F and G altogether? original/refs/heads/master does not appear to be a branch, but I am also not entirely sure what it is.


回答1:


Solved with:

git update-ref -d refs/original/refs/heads/master


来源:https://stackoverflow.com/questions/12805333/git-filter-branch-duplicated-commits

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!