diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-09-06 13:11:24 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-09-06 13:11:24 +0900 |
commit | 1fb77b3ee5417e7b6af782e43c8b98256861cca5 (patch) | |
tree | 6ae1e846a596ca2ef177d1ce8f14578cee4ce90d /branch.c | |
parent | The fifth batch post 2.14 (diff) | |
parent | branch: quote branch/ref names to improve readability (diff) | |
download | tgif-1fb77b3ee5417e7b6af782e43c8b98256861cca5.tar.xz |
Merge branch 'ks/branch-set-upstream'
"branch --set-upstream" that has been deprecated in Git 1.8 has
finally been retired.
* ks/branch-set-upstream:
branch: quote branch/ref names to improve readability
builtin/branch: stop supporting the "--set-upstream" option
t3200: cleanup cruft of a test
Diffstat (limited to 'branch.c')
-rw-r--r-- | branch.c | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -90,24 +90,24 @@ int install_branch_config(int flag, const char *local, const char *origin, const if (shortname) { if (origin) printf_ln(rebasing ? - _("Branch %s set up to track remote branch %s from %s by rebasing.") : - _("Branch %s set up to track remote branch %s from %s."), + _("Branch '%s' set up to track remote branch '%s' from '%s' by rebasing.") : + _("Branch '%s' set up to track remote branch '%s' from '%s'."), local, shortname, origin); else printf_ln(rebasing ? - _("Branch %s set up to track local branch %s by rebasing.") : - _("Branch %s set up to track local branch %s."), + _("Branch '%s' set up to track local branch '%s' by rebasing.") : + _("Branch '%s' set up to track local branch '%s'."), local, shortname); } else { if (origin) printf_ln(rebasing ? - _("Branch %s set up to track remote ref %s by rebasing.") : - _("Branch %s set up to track remote ref %s."), + _("Branch '%s' set up to track remote ref '%s' by rebasing.") : + _("Branch '%s' set up to track remote ref '%s'."), local, remote); else printf_ln(rebasing ? - _("Branch %s set up to track local ref %s by rebasing.") : - _("Branch %s set up to track local ref %s."), + _("Branch '%s' set up to track local ref '%s' by rebasing.") : + _("Branch '%s' set up to track local ref '%s'."), local, remote); } } |