* Unexpected messages by git rebase -m
@ 2009-04-22 19:55 Johannes Sixt
0 siblings, 0 replies; only message in thread
From: Johannes Sixt @ 2009-04-22 19:55 UTC (permalink / raw)
To: Git Mailing List
I did the usual fix-up-the-second-commit procedure, this time with 'git
rebase -m'. The result is OK, but rebase writes something unexpected:
git init
echo a > x && git add x && git commit -m A
echo b > x && git add x && git commit -m B
echo c > x && git add x && git commit -m C
git checkout HEAD^
echo b1 > x && git add x && git commit --amend -m B1
Here we have this history:
A--B--C <- master
\
B1 <- detached HEAD
git rebase -m HEAD master
git rebase --skip # B is in conflict; we don't need it
git checkout master x # resolve another conflict
Now look what rebase has to say:
$ git rebase --continue
[detached HEAD 90c7916] C
1 files changed, 1 insertions(+), 1 deletions(-)
Committed: 0001 C
Already applied: 0002 C
All done.
Notice "Committed: 0001 C" followed by "Already applied: 0002 C". I'd expect
only "Committed: 0002 C". What's up?
-- Hannes
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-04-22 19:57 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-04-22 19:55 Unexpected messages by git rebase -m Johannes Sixt
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).