Visual Studio Team Explorer - View Git Commands Visual Studio Team Explorer - View Git Commands git git

Visual Studio Team Explorer - View Git Commands


Git has a number of traces embedded which you can turn on by use git's tracing environment variables. To enable basic general logging:

  1. Open Command Prompt
  2. Run setx GIT_TRACE %UserProfile%\git.log
  3. Restart Visual Studio and Execute the git commands.
  4. Examine the git.log file

To disable logging:

  1. Open Command Prompt
  2. Run setx GIT_TRACE ""
  3. Restart Visual Studio.

Should you want to do other types of git tracing, you can also turn on other traces at the command line and point them at the same log file:
Run setx GIT_TRACE_CURL %UserProfile%\git.log
Run setx GCM_TRACE %UserProfile%\git.log
etc

See more environment variable examples at:
Git Internals - Environment Variables
and
How can I debug git/git-shell related problems?


Edit: VisualStudio no more use libgit2sharp but use pure git commands but that changes nothing to the fact that you can't see the commands run.

No, there is no option to do that. And that seems quite impossible because Visual Studio don't run git commands but use the library libgit2sharp to manage the git repositories.

If you use the git GUI 'GitExtensions', there is a possibility to see all the git commands run (but unfortunately, that is difficult to understand because the GUI run a lot of commands).


The official Visual Studio Git tutorial does not mention that feature at all.

As this uservoice suggestion suggests, going to command-line and repeating the command (when the one done by Visual Studio failed) is the current method to know more about what is going on.

You can see the Git command in the Terminal / Output / Git.