diff options
author | Karthik Nayak <karthik.188@gmail.com> | 2017-01-10 14:19:51 +0530 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-01-31 12:43:04 -0800 |
commit | 56b43607f975841e70203e55bba3c0b0228da6b0 (patch) | |
tree | 257ef9269e5b291bf5231d76a5a375ef7fa05a63 /builtin | |
parent | ref-filter: allow porcelain to translate messages in the output (diff) | |
download | tgif-56b43607f975841e70203e55bba3c0b0228da6b0.tar.xz |
branch, tag: use porcelain output
Call ref-filter's setup_ref_filter_porcelain_msg() to enable
translated messages for the %(upstream:tack) atom. Although branch.c
doesn't currently use ref-filter's printing API's, this will ensure
that when it does in the future patches, we do not need to worry about
translation.
Written-by: Matthieu Moy <matthieu.moy@grenoble-inp.fr>
Mentored-by: Christian Couder <christian.couder@gmail.com>
Mentored-by: Matthieu Moy <matthieu.moy@grenoble-inp.fr>
Signed-off-by: Karthik Nayak <karthik.188@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/branch.c | 2 | ||||
-rw-r--r-- | builtin/tag.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/builtin/branch.c b/builtin/branch.c index 6423ebce5d..34cd61cd90 100644 --- a/builtin/branch.c +++ b/builtin/branch.c @@ -649,6 +649,8 @@ int cmd_branch(int argc, const char **argv, const char *prefix) OPT_END(), }; + setup_ref_filter_porcelain_msg(); + memset(&filter, 0, sizeof(filter)); filter.kind = FILTER_REFS_BRANCHES; filter.abbrev = -1; diff --git a/builtin/tag.c b/builtin/tag.c index b4789cec45..8a1a476db7 100644 --- a/builtin/tag.c +++ b/builtin/tag.c @@ -375,6 +375,8 @@ int cmd_tag(int argc, const char **argv, const char *prefix) OPT_END() }; + setup_ref_filter_porcelain_msg(); + git_config(git_tag_config, sorting_tail); memset(&opt, 0, sizeof(opt)); |