To list the commits of a single user from all branches, use the following command: git log –pretty=format:”%ad:%an:%d:%B” –date=short –reverse –all –since=2.months.ago –author=Anthony
Tag: Commits
Git – list commits in topic branch that are not within the master branch
git log topic ^master –no-merges This will list all commits within the topic branch that are not found within the master branch. I needed this to cherry-pick specific commits out of a working feature branch when I mistakenly rebased against a common staging branch.