Skip to content

Commit

Permalink
contrib/fast-import: use a lowercase "usage:" string
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
David Aguilar authored and Junio C Hamano committed Feb 24, 2013
1 parent c358ed7 commit dd3a4ad
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contrib/fast-import/git-import.perl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
use strict;
use File::Find;

my $USAGE = 'Usage: git-import branch import-message';
my $USAGE = 'usage: git-import branch import-message';
my $branch = shift or die "$USAGE\n";
my $message = shift or die "$USAGE\n";

Expand Down
2 changes: 1 addition & 1 deletion contrib/fast-import/git-import.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# but is meant to be a simple fast-import example.

if [ -z "$1" -o -z "$2" ]; then
echo "Usage: git-import branch import-message"
echo "usage: git-import branch import-message"
exit 1
fi

Expand Down
2 changes: 1 addition & 1 deletion contrib/fast-import/import-zips.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
sys.exit(1)

if len(argv) < 2:
print 'Usage:', argv[0], '<zipfile>...'
print 'usage:', argv[0], '<zipfile>...'
exit(1)

branch_ref = 'refs/heads/import-zips'
Expand Down

0 comments on commit dd3a4ad

Please sign in to comment.