diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-12-13 13:28:54 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-12-13 13:28:54 -0800 |
commit | 6c3daa23461333c508c41faa532c6fb749cd0db0 (patch) | |
tree | 0d480e7fae2e4d975e317b22f99d668bac436fbe /revision.c | |
parent | 721cc4314cb593e799213ad5f926a1e9fc5779b0 (diff) | |
parent | 65516f586b69307f977cd67cc45513a296cabc25 (diff) |
Merge branch 'ra/decorate-limit-refs'
The tagnames "git log --decorate" uses to annotate the commits can
now be limited to subset of available refs with the two additional
options, --decorate-refs[-exclude]=<pattern>.
* ra/decorate-limit-refs:
log: add option to choose which refs to decorate
Diffstat (limited to 'revision.c')
-rw-r--r-- | revision.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/revision.c b/revision.c index e2e691dd5a..f6a3da5cd9 100644 --- a/revision.c +++ b/revision.c @@ -1832,7 +1832,7 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg revs->simplify_by_decoration = 1; revs->limited = 1; revs->prune = 1; - load_ref_decorations(DECORATE_SHORT_REFS); + load_ref_decorations(NULL, DECORATE_SHORT_REFS); } else if (!strcmp(arg, "--date-order")) { revs->sort_order = REV_SORT_BY_COMMIT_DATE; revs->topo_order = 1; |