0

Im using Visual Studio 2019, with new fancy Git experience. Is there any way to view the actual commands sent to git. Like a log file or perhaps even some documentation of exacly what is done

Cowborg
  • 2,645
  • 3
  • 34
  • 51

1 Answers1

1

You can view history using reflog

git reflog

Check out this SO answer too - Link

Note: Reflog only shows history whenever the HEAD changes. Meaning you won't see history for git log like commands.

clamentjohn
  • 3,417
  • 2
  • 18
  • 42