How do we exclude Notes added by 'git notes add'
from git log
?
When we run git log --all
, there are millions of lines with Notes added by 'git notes add'
. We need --all to see everything else. We just don't want the commits that add the notes. However, we do want to see the actual notes itself that was attached to commits.
There's probably a duplicate question somewhere out there but I've search for over 8 hours and still can't find one.
For example: git log --graph --abbrev-commit --decorate --format=format:'%C(bold blue)%h%C(reset) - %C(bold green)(%ar)%C(reset) %C(white)%s%C(reset) %C(dim white)- %an%C(reset)%C(bold yellow)%d%C(reset) %C(red)%N %C(reset)' --all
displays the following (where Tested
is the notes):
- 1b15b8e - (3 hours ago) Notes added by 'git notes add' - maker2
- 06b1158 - (2 hours ago) Fixed bug #37 - maker2
Tested
We actually want:
- 06b1158 - (2 hours ago) Fixed bug #37 - maker2
Tested
We don't want:
- 1b15b8e - (3 hours ago) Notes added by 'git notes add' - maker2
Using --no-notes actually produces the following, which is NOT the output we want:
- 1b15b8e - (3 hours ago) Notes added by 'git notes add' - maker2 %N
- 06b1158 - (2 hours ago) Fixed bug #37 - maker2 %N
Git version is 1.7.1
The current work around we have is to use | grep -v 'Notes added by' | less -r
but the output now gets colored strangely with the graph lines are displayed in rainbow colors for some reason.