diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-07-13 15:36:31 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-07-13 15:36:31 -0700 |
commit | a1204bd7c3021cbaf1f4f485eb11f2e5a72355b3 (patch) | |
tree | 7de327ecd3b3b45ec185ef9639c6bec7f029e4f9 /git-rebase--interactive.sh | |
parent | 2b533592900ecebeb69e2dd1b70744433700ff2d (diff) | |
parent | 0fbb95dc83c80fa12f731e703e88e61d9391abd5 (diff) | |
download | git-a1204bd7c3021cbaf1f4f485eb11f2e5a72355b3.tar.gz |
Merge branch 'mz/rebase-no-mbox'
Teach "am --rebasing" codepath to grab authorship, log message and
the patch text directly out of existing commits. This will help
rebasing commits that have confusing "diff" output in their log
messages.
* mz/rebase-no-mbox:
am: don't call mailinfo if $rebasing
am --rebasing: get patch body from commit, not from mailbox
rebase --root: print usage on too many args
rebase: don't source git-sh-setup twice
Diffstat (limited to 'git-rebase--interactive.sh')
-rw-r--r-- | git-rebase--interactive.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/git-rebase--interactive.sh b/git-rebase--interactive.sh index 5f566726ab..3a3c382357 100644 --- a/git-rebase--interactive.sh +++ b/git-rebase--interactive.sh @@ -9,9 +9,7 @@ # # The original idea comes from Eric W. Biederman, in # http://article.gmane.org/gmane.comp.version-control.git/22407 - -. git-sh-setup - +# # The file containing rebase commands, comments, and empty lines. # This file is created by "git rebase -i" then edited by the user. As # the lines are processed, they are removed from the front of this |