Do we have a way to exclude branches? For example, I wish to see everything BUT commits associated with git notes add. I achieve this behavior with git log --graph --exclude=refs/notes/* ....
FWIW, it appears --choose-branch|tag doesn't satisfy this use case. I need all branch/tag commits except for notes.
Do we have a way to exclude branches? For example, I wish to see everything BUT commits associated with
git notes add. I achieve this behavior withgit log --graph --exclude=refs/notes/* ....FWIW, it appears
--choose-branch|tagdoesn't satisfy this use case. I need all branch/tag commits except for notes.