diff options
author | J. Bruce Fields <bfields@citi.umich.edu> | 2007-09-07 16:20:51 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2007-09-08 06:02:11 +0200 |
commit | d05ec5a064e402475ab48617213f2a619a2fabc5 (patch) | |
tree | b80859c586e7d191c2e876b402a59648b101c157 /git-rebase.sh | |
parent | git-rebase: support --whitespace=<option> (diff) | |
download | git-d05ec5a064e402475ab48617213f2a619a2fabc5.tar.xz git-d05ec5a064e402475ab48617213f2a619a2fabc5.zip |
git-rebase: fix -C option
The extra shift here causes failure to parse any commandline including
the -C option.
Signed-off-by: J. Bruce Fields <bfields@citi.umich.edu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-rebase.sh')
-rwxr-xr-x | git-rebase.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/git-rebase.sh b/git-rebase.sh index 52c686fc8c..c9942f2400 100755 --- a/git-rebase.sh +++ b/git-rebase.sh @@ -221,7 +221,6 @@ do ;; -C*) git_am_opt="$git_am_opt $1" - shift ;; -*) usage |