OSDN Git Service

git-rebase: fix typo when parsing --force-rebase
authorWilly Tarreau <w@1wt.eu>
Sun, 8 Aug 2010 05:13:32 +0000 (07:13 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 9 Aug 2010 18:51:50 +0000 (11:51 -0700)
Due to two missing hyphens, The "force" keyword on the command line
would be taken as an alias for the --force-rebase option.

Signed-off-by: Willy Tarreau <w@1wt.eu>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-rebase.sh

index 2d88742..1d38afd 100755 (executable)
@@ -346,7 +346,7 @@ do
        --root)
                rebase_root=t
                ;;
-       -f|--f|--fo|--for|--forc|force|--force-r|--force-re|--force-reb|--force-reba|--force-rebas|--force-rebase|--no-ff)
+       -f|--f|--fo|--for|--forc|--force|--force-r|--force-re|--force-reb|--force-reba|--force-rebas|--force-rebase|--no-ff)
                force_rebase=t
                ;;
        --rerere-autoupdate|--no-rerere-autoupdate)