What git branch was I just in?

Viewed 82

My workflow often consists of the following:

  • working on a long term feature branch (call it 'A')
  • checking out master and making a hotfix branch (call it 'B')
  • pushing my hotfix
  • Then I forget what branch I was working on before that...

Is there any sort of git history that will show me that the thing I was previously working on was branch A?

4 Answers
Related