diff options
author | Junio C Hamano <gitster@pobox.com> | 2019-12-16 13:14:46 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-12-16 13:14:46 -0800 |
commit | 3a44db2ed2dab6745b3e5fcb78d9c53614dd486f (patch) | |
tree | 4d037b38f852e25a4c0bb4f7d728c7722c59c920 /builtin | |
parent | Merge branch 'sg/t9300-robustify' (diff) | |
parent | l10n: minor case fix in 'git branch' '--unset-upstream' description (diff) | |
download | tgif-3a44db2ed2dab6745b3e5fcb78d9c53614dd486f.tar.xz |
Merge branch 'dr/branch-usage-casefix'
Message fix.
* dr/branch-usage-casefix:
l10n: minor case fix in 'git branch' '--unset-upstream' description
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/branch.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 2ef214632f..d8297f80ff 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -624,7 +624,7 @@ int cmd_branch(int argc, const char **argv, const char *prefix) OPT_SET_INT_F(0, "set-upstream", &track, N_("do not use"), BRANCH_TRACK_OVERRIDE, PARSE_OPT_HIDDEN), OPT_STRING('u', "set-upstream-to", &new_upstream, N_("upstream"), N_("change the upstream info")), - OPT_BOOL(0, "unset-upstream", &unset_upstream, N_("Unset the upstream info")), + OPT_BOOL(0, "unset-upstream", &unset_upstream, N_("unset the upstream info")), OPT__COLOR(&branch_use_color, N_("use colored output")), OPT_SET_INT('r', "remotes", &filter.kind, N_("act on remote-tracking branches"), FILTER_REFS_REMOTES), |