git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Make rebase save ORIG_HEAD if using current branch
@ 2008-05-06  5:19 Brian Gernhardt
  2008-05-06  6:32 ` Johannes Sixt
  0 siblings, 1 reply; 5+ messages in thread
From: Brian Gernhardt @ 2008-05-06  5:19 UTC (permalink / raw)
  To: Git List; +Cc: Junio C Hamano

This makes rebase act a little more like merge when working on the
current branch.  This is particularly useful for `git pull --rebase`

Signed-off-by: Brian Gernhardt <benji@silverinsanity.com>
---

 I was trying to figure out why reviewing the new changes in git was so
 hard using my `git log ORIG_HEAD..` alias.  Turns out my ORIG_HEAD
 hadn't been updated since Feburary, which is when I set
 branch.master.rebase to true.

 I think ORIG_HEAD should be set every time a pull changes HEAD, whether
 by a merge or rebase.  Making rebase act like merge seemed more elegant
 than having git-pull set ORIG_HEAD iff using rebase.

 git-rebase.sh |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/git-rebase.sh b/git-rebase.sh
index 9b13b83..8d54d9f 100755
--- a/git-rebase.sh
+++ b/git-rebase.sh
@@ -342,6 +342,7 @@ case "$#" in
 		branch_name=HEAD ;# detached
 	fi
 	branch=$(git rev-parse --verify "${branch_name}^0") || exit
+	echo "$branch" > "$GIT_DIR/ORIG_HEAD"
 	;;
 esac
 orig_head=$branch
-- 
1.5.5.1.242.g558e8

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2008-05-07 14:31 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-05-06  5:19 [PATCH] Make rebase save ORIG_HEAD if using current branch Brian Gernhardt
2008-05-06  6:32 ` Johannes Sixt
2008-05-06 17:45   ` Brian Gernhardt
2008-05-07  8:14     ` Johannes Sixt
2008-05-07 14:30       ` Junio C Hamano

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).