简体   繁体   中英

Visual Studio Team Explorer - View Git Commands

New versions of Visual Studio Team Explorer has built in support for Git.

I want to know if there is an option to view the Git commands executed while using the Team explorer for Git actions like Commit and Push.

Also would be better to have an option to view the other commands executed by Team Explorer like fetching status.

Are those features available with the current Visual Studio?

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).

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?

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM