I have an old project that I was trying to clean up, and somehow I endedup with two separate commits that think they're the "initial commit" and don't have a parent branch, as seen below:
% git log --all --date-order --pretty="%h %p %d"
0fb2623 81d3553 (HEAD -> master, tag: v6.2.5, origin/master,
origin/HEAD)
81d3553 d7d7578 (tag: v6.2.4)
d7d7578 eae8973 (tag: v6.2.3)
eae8973 ded0fe9 (tag: v6.2.1)
ded0fe9 efb33b0 (tag: v6.2.0)
efb33b0
13a5b0e 45ab2ba (tag: v6.0.1)
45ab2ba 2d60f30
2d60f30 2185112
2185112 872f408
872f408
Is there a way that I can re-link that in so that efb33b0
has a parent of 13a5b0e
?