summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorSergio Ahumada <sahumada@blackberry.com>2015-01-17 15:11:43 +0100
committerSergio Ahumada <sahumada@texla.cl>2015-01-19 15:50:54 +0100
commitea44782a8afbba2d867d2ce51d21dd16b504a284 (patch)
tree8b164c7d929e37298353ca638e8051f07e8eef09 /bin
parentf16b26180c5e010b036c69bcd450d350bfa0e7c8 (diff)
git-rewrite-author: Fix warning when using -f (force) to match the help
Option f is ambiguous (force, from) Change-Id: Ie4d02f22afc143e8f7488ac4f45ed7742a480301 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/git-rewrite-author6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/git-rewrite-author b/bin/git-rewrite-author
index 26a3c6d..c03d988 100755
--- a/bin/git-rewrite-author
+++ b/bin/git-rewrite-author
@@ -97,9 +97,9 @@ my $from;
my $to;
my $force;
if (!GetOptions(
- "from=s" => \$from,
- "to=s" => \$to,
- "force" => \$force,
+ "from=s" => \$from,
+ "to=s" => \$to,
+ "f|force" => \$force,
)) {
usage;
exit 2;