Is there a way to see with git log or some other command only the commits that were added after branch creation?
git log
usage: git log [
Yes it's possible to compare your "new" branch with the master branch (commonly named : "master"):
git log master..
Of course, replace .