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
Asked
Active
Viewed 75 times
0
-
1You can view history using reflog. Check out this SO answer - [Link](https://stackoverflow.com/a/7435555/5698740). Note: This will only show history where the HEAD was changed. But your question doesn't ask for that. – clamentjohn Jul 02 '21 at 10:45
-
ok, kool, thanks! (add it answer if you want the creds) – Cowborg Jul 02 '21 at 11:53
-
Don't mind if I do. :) – clamentjohn Jul 02 '21 at 12:17
1 Answers
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