When using git, is there a way to show commits made to a branch, while ignoring all commits that were brought in by merging?
I\'m trying to review the code changes
A very hackish way:
git log --graph --oneline --no-merges thebranch|grep '^\*'