projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2ed8e62
)
git: grok 'help' to mean '--help'.
author
Andreas Ericsson
<exon@op5.se>
Tue, 3 Jan 2006 09:53:54 +0000
(10:53 +0100)
committer
Junio C Hamano
<junkio@cox.net>
Fri, 6 Jan 2006 04:28:52 +0000
(20:28 -0800)
Most other scm's understand it, most users expect it and it's an easy fix.
Signed-off-by: Andreas Ericsson <ae@op5.se>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git.c
patch
|
blob
|
history
diff --git
a/git.c
b/git.c
index
e795ddb
..
5e7da74
100644
(file)
--- a/
git.c
+++ b/
git.c
@@
-244,6
+244,11
@@
int main(int argc, char **argv, char **envp)
for (i = 1; i < argc; i++) {
char *arg = argv[i];
+ if (!strcmp(arg, "help")) {
+ show_help = 1;
+ continue;
+ }
+
if (strncmp(arg, "--", 2))
break;