projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cad06d4
)
Fix typo in remote set-head usage
author
Antoine Pelisse
<apelisse@gmail.com>
Mon, 26 Nov 2012 19:21:54 +0000
(20:21 +0100)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 26 Nov 2012 21:27:45 +0000
(13:27 -0800)
parenthesis are not matching in `builtin_remote_sethead_usage`
as a square bracket is closing something never opened.
Signed-off-by: Antoine Pelisse <apelisse@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/remote.c
patch
|
blob
|
history
diff --git
a/builtin/remote.c
b/builtin/remote.c
index a5a4b232310a27c1d67dd6a1bce252cd62cfa52d..937484d7c77c448995481f246c1afe2dedd4c561 100644
(file)
--- a/
builtin/remote.c
+++ b/
builtin/remote.c
@@
-39,7
+39,7
@@
static const char * const builtin_remote_rm_usage[] = {
};
static const char * const builtin_remote_sethead_usage[] = {
- N_("git remote set-head <name> (-a | -d | <branch>
]
)"),
+ N_("git remote set-head <name> (-a | -d | <branch>)"),
NULL
};