Visual Studio Team Explorer - View Git Commands

与世无争的帅哥 提交于 2019-11-30 02:46:05

问题


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?


回答1:


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?




回答2:


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




回答3:


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.



来源:https://stackoverflow.com/questions/38681578/visual-studio-team-explorer-view-git-commands

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!