Cowborg
Cowborg

Reputation: 2871

See Visual Studios actual Git commands

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

Answers (1)

clamentjohn
clamentjohn

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

Related Questions