]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
"checkout A...B" switches to the merge base between A and B
authorJunio C Hamano <gitster@pobox.com>
Sun, 18 Oct 2009 19:34:56 +0000 (12:34 -0700)
committerJunio C Hamano <gitster@pobox.com>
Sun, 18 Oct 2009 19:34:56 +0000 (12:34 -0700)
commit619a644d6daef56d70aeca85514e2d281eb483a5
tree8661f5c524f8e62450b5402ca16a2729820a3aff
parent46148dd7ea41de10fc784c247924f73ddb21121b
"checkout A...B" switches to the merge base between A and B

When flipping commits around on topic branches, I often end up doing
this sequence:

 * Run "log --oneline next..jc/frotz" to find out the first commit
   on 'jc/frotz' branch not yet merged to 'next';

 * Run "checkout $that_commit^" to detach HEAD to the parent of it;

 * Rebuild the series on top of that commit; and

 * "show-branch jc/frotz HEAD" and "diff jc/frotz HEAD" to verify.

Introduce a new syntax to "git checkout" to name the commit to switch to,
to make the first two steps easier.  When the branch to switch to is
specified as A...B (you can omit either A or B but not both, and HEAD
is used instead of the omitted side), the merge base between these two
commits are computed, and if there is one unique one, we detach the HEAD
at that commit.

With this, I can say "checkout next...jc/frotz".

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin-checkout.c
cache.h
sha1_name.c
t/t2012-checkout-last.sh