Re: [PATCH] git-log: added --invert-grep option

2014-12-29 Thread Junio C Hamano
Christoph Junghans writes: > Ok, I drafted a first version of the suggest --grep-begin ... > --grep-end syntax. I am somewhat surprised that it was doable that cleanly. The syntax, as I already said, is a bit too ugly to live in that form I suggested, though ;-). > However, I could not find a

Re: [PATCH] git-log: added --invert-grep option

2014-12-23 Thread Christoph Junghans
Ok, I drafted a first version of the suggest --grep-begin ... --grep-end syntax. However, I could not find a good ways to invert the match on a commit basis instead of the normal line-wise version. Any suggestions? -- To unsubscribe from this list: send the line "unsubscribe git" in the body of

Re: [PATCH] git-log: added --invert-grep option

2014-12-18 Thread Junio C Hamano
Christoph Junghans writes: > Implements a inverted match for "git log", like in the case of > "git grep -v", which is useful from time to time to e.g. filter > FIXUP message out of "git log". > > Internally, a new bol 'global_invert' has been introduces as > revs->grep_filter.invert inverts the m

[PATCH] git-log: added --invert-grep option

2014-12-18 Thread Christoph Junghans
Implements a inverted match for "git log", like in the case of "git grep -v", which is useful from time to time to e.g. filter FIXUP message out of "git log". Internally, a new bol 'global_invert' has been introduces as revs->grep_filter.invert inverts the match line-wise, which cannot work as i.e