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: branches
Git – diff (compare) the same file on different branches
If you want to see the difference between the same file on separate branches, use the following snippet at the CLI: git diff branch1 branch2 — your-file.ext