Reputation: 2871
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
Upvotes: 0
Views: 177
Reputation: 4017
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.
Upvotes: 1