summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: bb06aaf)
raw | patch | inline | side by side (parent: bb06aaf)
author | Holger Weiss <holger@zedat.fu-berlin.de> | |
Fri, 6 Nov 2009 16:33:58 +0000 (17:33 +0100) | ||
committer | Holger Weiss <holger@zedat.fu-berlin.de> | |
Fri, 6 Nov 2009 16:33:58 +0000 (17:33 +0100) |
Fix the description of the "-U" option.
tools/git-notify | patch | blob | history |
diff --git a/tools/git-notify b/tools/git-notify
index 97bd2adae74cb0421875302e4ac17176f8f67285..ebede1a4f69041864a1876adf3e2eaf463761e3a 100755 (executable)
--- a/tools/git-notify
+++ b/tools/git-notify
# -r name Set the git repository name
# -s bytes Set the maximum diff size in bytes (-1 for no limit)
# -t file Set the file to use for reading and saving state
+# -U mask Set the umask for creating the state file
# -u url Set the URL to the gitweb browser
# -i branch If at least one -i is given, report only for specified branches
# -x branch Exclude changes to the specified branch from reports
print " -r name Set the git repository name\n";
print " -s bytes Set the maximum diff size in bytes (-1 for no limit)\n";
print " -t file Set the file to use for reading and saving state\n";
+ print " -U mask Set the umask for creating the state file\n";
print " -u url Set the URL to the gitweb browser\n";
- print " -U mask Set the umask for creatung the state file\n";
print " -i branch If at least one -i is given, report only for specified branches\n";
print " -x branch Exclude changes to the specified branch from reports\n";
print " -X Exclude merge commits\n";
elsif ($arg eq '-r') { $repos_name = shift @ARGV; }
elsif ($arg eq '-s') { $max_diff_size = shift @ARGV; }
elsif ($arg eq '-t') { $state_file = shift @ARGV; }
- elsif ($arg eq '-u') { $gitweb_url = shift @ARGV; }
elsif ($arg eq '-U') { $mode_mask = shift @ARGV; }
+ elsif ($arg eq '-u') { $gitweb_url = shift @ARGV; }
elsif ($arg eq '-i') { push @include_list, shift @ARGV; }
elsif ($arg eq '-x') { push @exclude_list, shift @ARGV; }
elsif ($arg eq '-X') { push @revlist_options, "--no-merges"; }