Given a branch, I\'d like to see a list of commits that exist only on that branch. In this question we discuss ways to see which commits are on one branch
git log origin/dev..HEAD
This will show you all the commits made in your branch.