Merge branch 'cj/log-invert-grep'
"git log --invert-grep --grep=WIP" will show only commits that do not have the string "WIP" in their messages. * cj/log-invert-grep: log: teach --invert-grep option
This commit is contained in:
@ -2017,6 +2017,8 @@ static int handle_revision_opt(struct rev_info *revs, int argc, const char **arg
|
||||
grep_set_pattern_type_option(GREP_PATTERN_TYPE_PCRE, &revs->grep_filter);
|
||||
} else if (!strcmp(arg, "--all-match")) {
|
||||
revs->grep_filter.all_match = 1;
|
||||
} else if (!strcmp(arg, "--invert-grep")) {
|
||||
revs->invert_grep = 1;
|
||||
} else if ((argcount = parse_long_opt("encoding", argv, &optarg))) {
|
||||
if (strcmp(optarg, "none"))
|
||||
git_log_output_encoding = xstrdup(optarg);
|
||||
@ -2915,7 +2917,7 @@ static int commit_match(struct commit *commit, struct rev_info *opt)
|
||||
(char *)message, strlen(message));
|
||||
strbuf_release(&buf);
|
||||
unuse_commit_buffer(commit, message);
|
||||
return retval;
|
||||
return opt->invert_grep ? !retval : retval;
|
||||
}
|
||||
|
||||
static inline int want_ancestry(const struct rev_info *revs)
|
||||
|
||||
Reference in New Issue
Block a user