Skip to content

Commit

Permalink
contrib/examples: 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 e257f05 commit beb5ab1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/examples/git-remote.perl
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down
2 changes: 1 addition & 1 deletion contrib/examples/git-svnimport.perl
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

sub usage() {
print STDERR <<END;
Usage: ${\basename $0} # fetch/update GIT from SVN
usage: ${\basename $0} # fetch/update GIT from SVN
[-o branch-for-HEAD] [-h] [-v] [-l max_rev] [-R repack_each_revs]
[-C GIT_repository] [-t tagname] [-T trunkname] [-b branchname]
[-d|-D] [-i] [-u] [-r] [-I ignorefilename] [-s start_chg]
Expand Down

0 comments on commit beb5ab1

Please sign in to comment.