git-svn: use a lowercase "usage:" string
Make the usage string consistent with Git. Signed-off-by: David Aguilar <davvid@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
1a2ba8b90f
commit
0b670abd97
|
@ -534,7 +534,7 @@ sub cmd_fetch {
|
||||||
}
|
}
|
||||||
my ($remote) = @_;
|
my ($remote) = @_;
|
||||||
if (@_ > 1) {
|
if (@_ > 1) {
|
||||||
die "Usage: $0 fetch [--all] [--parent] [svn-remote]\n";
|
die "usage: $0 fetch [--all] [--parent] [svn-remote]\n";
|
||||||
}
|
}
|
||||||
$Git::SVN::no_reuse_existing = undef;
|
$Git::SVN::no_reuse_existing = undef;
|
||||||
if ($_fetch_parent) {
|
if ($_fetch_parent) {
|
||||||
|
@ -1404,7 +1404,7 @@ sub cmd_multi_fetch {
|
||||||
# this command is special because it requires no metadata
|
# this command is special because it requires no metadata
|
||||||
sub cmd_commit_diff {
|
sub cmd_commit_diff {
|
||||||
my ($ta, $tb, $url) = @_;
|
my ($ta, $tb, $url) = @_;
|
||||||
my $usage = "Usage: $0 commit-diff -r<revision> ".
|
my $usage = "usage: $0 commit-diff -r<revision> ".
|
||||||
"<tree-ish> <tree-ish> [<URL>]";
|
"<tree-ish> <tree-ish> [<URL>]";
|
||||||
fatal($usage) if (!defined $ta || !defined $tb);
|
fatal($usage) if (!defined $ta || !defined $tb);
|
||||||
my $svn_path = '';
|
my $svn_path = '';
|
||||||
|
|
Loading…
Reference in New Issue