When I git log --decorate --online --graph --all
Branches like to see graphs, but private branches of other developers.
Can I tell git logs
to ignore a code related branch, such as git logs - all --igner-branches = "original / Private _ * "
?
I think the - no
option is in search of this command should do.
git log --decorate --online --graph --all --not --remotes = "orig / private_ *"
Comments
Post a Comment