diff options
author | David Aguilar <davvid@gmail.com> | 2013-02-23 16:50:21 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-24 13:31:09 -0800 |
commit | beb5ab184ca2dfbc5a68693761bd7dc8f7044150 (patch) | |
tree | 5cbf385edbeb2e199826bcd7e5bdf9a5311cf239 /contrib/examples/git-remote.perl | |
parent | e257f0551fdf9351dc3f8796ef3ca11b255b8a04 (diff) | |
download | git-beb5ab184ca2dfbc5a68693761bd7dc8f7044150.tar.gz git-beb5ab184ca2dfbc5a68693761bd7dc8f7044150.tar.xz |
contrib/examples: use a lowercase "usage:" string
Make the usage string consistent with Git.
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'contrib/examples/git-remote.perl')
-rwxr-xr-x | contrib/examples/git-remote.perl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/examples/git-remote.perl b/contrib/examples/git-remote.perl index b17952a78..b549a3c11 100755 --- a/contrib/examples/git-remote.perl +++ b/contrib/examples/git-remote.perl @@ -347,7 +347,7 @@ sub rm_remote { } sub add_usage { - print STDERR "Usage: git remote add [-f] [-t track]* [-m master] <name> <url>\n"; + print STDERR "usage: git remote add [-f] [-t track]* [-m master] <name> <url>\n"; exit(1); } |