-2

According to this question, I can use git log master..my-branch to see the log of commits to my-branch, assuming it was created off master, regardless of which branch I am on. This is useful, but what if I want to see the log of all commits to master, back to the begging of time, while I have a different branch checked out? git log master..master does nothing (understandably)

ewok
  • 20,148
  • 51
  • 149
  • 254

1 Answers1

2

A simple git log master should do the job.

meshde
  • 427
  • 6
  • 11