Skip to content

Commit f740cc2

Browse files
peffgitster
authored andcommitted
push: fix typo in usage
Missing ")". Signed-off-by: Jeff King <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 492cf3f commit f740cc2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin-push.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ int cmd_push(int argc, const char **argv, const char *prefix)
181181
OPT_BIT( 0 , "all", &flags, "push all refs", TRANSPORT_PUSH_ALL),
182182
OPT_BIT( 0 , "mirror", &flags, "mirror all refs",
183183
(TRANSPORT_PUSH_MIRROR|TRANSPORT_PUSH_FORCE)),
184-
OPT_BOOLEAN( 0 , "tags", &tags, "push tags (can't be used with --all or --mirror"),
184+
OPT_BOOLEAN( 0 , "tags", &tags, "push tags (can't be used with --all or --mirror)"),
185185
OPT_BIT('n' , "dry-run", &flags, "dry run", TRANSPORT_PUSH_DRY_RUN),
186186
OPT_BIT( 0, "porcelain", &flags, "machine-readable output", TRANSPORT_PUSH_PORCELAIN),
187187
OPT_BIT('f', "force", &flags, "force updates", TRANSPORT_PUSH_FORCE),

0 commit comments

Comments
 (0)