summaryrefslogtreecommitdiffstats
path: root/revision.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-06-09 20:30:12 +0200
committerJunio C Hamano <gitster@pobox.com>2014-06-09 20:30:13 +0200
commit07768e03b5a5efc9d768d6afc6246d2ec345cace (patch)
tree34c7bd86258ada7c6801b1c75041e1b2e9c8b9fc /revision.c
parentMerge branch 'mn/sideband-no-ansi' (diff)
parentshortlog: allow --exclude=<glob> to be passed (diff)
downloadgit-07768e03b5a5efc9d768d6afc6246d2ec345cace.tar.xz
git-07768e03b5a5efc9d768d6afc6246d2ec345cace.zip
Merge branch 'jc/shortlog-ref-exclude'
"log --exclude=<glob> --all | shortlog" worked as expected, but "shortlog --exclude=<glob> --all" was not accepted at the command line argument parser level. * jc/shortlog-ref-exclude: shortlog: allow --exclude=<glob> to be passed
Diffstat (limited to 'revision.c')
-rw-r--r--revision.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/revision.c b/revision.c
index 71e2337423..3818b4628d 100644
--- a/revision.c
+++ b/revision.c
@@ -1633,6 +1633,7 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
!strcmp(arg, "--reflog") || !strcmp(arg, "--not") ||
!strcmp(arg, "--no-walk") || !strcmp(arg, "--do-walk") ||
!strcmp(arg, "--bisect") || starts_with(arg, "--glob=") ||
+ starts_with(arg, "--exclude=") ||
starts_with(arg, "--branches=") || starts_with(arg, "--tags=") ||
starts_with(arg, "--remotes=") || starts_with(arg, "--no-walk="))
{