contrib/fast-import: 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>
This commit is contained in:
David Aguilar
2013-02-23 16:50:18 -08:00
committed by Junio C Hamano
parent c358ed756e
commit dd3a4ad95f
3 changed files with 3 additions and 3 deletions

View File

@ -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";