Skip to content

Commit

Permalink
Fix --strategy parsing in git-rebase--interactive.sh
Browse files Browse the repository at this point in the history
For the --strategy/-s option, git-rebase--interactive.sh dropped the
parameter which it was trying to parse.

Signed-off-by: Björn Steinbrink <B.Steinbrink@gmx.de>
Acked-by: Johannes Schindelin <Johannes.Schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
dotdash authored and gitster committed Oct 31, 2007
1 parent 07b45f8 commit 3524b28
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion git-rebase--interactive.sh
Expand Up @@ -357,7 +357,6 @@ do
output git reset --hard && do_rest
;;
-s|--strategy)
shift
case "$#,$1" in
*,*=*)
STRATEGY="-s `expr "z$1" : 'z-[^=]*=\(.*\)'`" ;;
Expand Down

0 comments on commit 3524b28

Please sign in to comment.