My Various Git Projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ca70c9e
)
Translate git_more_info_string consistently
author
Kevin Bracey
<kevin@bracey.fi>
Sun, 10 Mar 2013 15:10:20 +0000
(17:10 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Sun, 10 Mar 2013 20:11:31 +0000
(13:11 -0700)
"git help" translated the "See 'git help <command>' for more
information..." message, but "git" didn't.
Signed-off-by: Kevin Bracey <kevin@bracey.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git.c
patch
|
blob
|
history
diff --git
a/git.c
b/git.c
index
d33f9b3
..
e484644
100644
(file)
--- a/
git.c
+++ b/
git.c
@@
-536,7
+536,7
@@
int main(int argc, const char **argv)
commit_pager_choice();
printf("usage: %s\n\n", git_usage_string);
list_common_cmds_help();
- printf("\n%s\n",
git_more_info_string
);
+ printf("\n%s\n",
_(git_more_info_string)
);
exit(1);
}
cmd = argv[0];