diff options
author | Junio C Hamano <junkio@cox.net> | 2006-05-21 03:16:38 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-05-21 03:16:38 -0700 |
commit | efbff23609654ac0542d3421d19eea8dbc1f80cd (patch) | |
tree | 16465530ed9b898b1cdec1bac9b10617fc4beedd /git-rebase.sh | |
parent | 685637381a967cd7388495f97b12b7cf177abbb4 (diff) | |
download | git-efbff23609654ac0542d3421d19eea8dbc1f80cd.tar.gz |
git-rebase: use canonical A..B syntax to format-patch
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-x | git-rebase.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-rebase.sh b/git-rebase.sh index 6ff6088d18..e6b57b8ab9 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -152,6 +152,6 @@ then exit 0 fi -git-format-patch -k --stdout --full-index "$upstream" ORIG_HEAD | +git-format-patch -k --stdout --full-index "$upstream"..ORIG_HEAD | git am --binary -3 -k --resolvemsg="$RESOLVEMSG" |