Blog coding and discussion of coding about JavaScript, PHP, CGI, general web building etc.

Wednesday, June 22, 2016

How can you disable Git integration in Visual Studio 2013 permanently?

How can you disable Git integration in Visual Studio 2013 permanently?


I know that you can disable git integration by using the Tools / Options dialog, but what I've noticed is that this setting doesn't seem to persist across sessions; i.e., as soon as close and reopen the solution, Git integration is enabled again. I'm guessing Visual Studio is seeing the .git folder in my solution file system tree.

There are a variety of Visual Studio 2013 plugins that behave incorrectly when the Git plug-in is enabled, I prefer to manage my source control at the command line, and I work on a few very large projects for which the Git integration introduces noticeable slowdowns in opening and working with the solution. I'd like to turn it off for good, as I simply don't use it or need it. Is this possible?

Answer by Boklucius for How can you disable Git integration in Visual Studio 2013 permanently?


I managed to disable the built-in Visual Studio Git Provider by deleting all occurrences of those registry keys:

7FE30A77-37F9-4CF2-83DD-96B207028E1B

11b8e6d7-c08b-4385-b321-321078cdd1f8

Answer by Dale Fraser for How can you disable Git integration in Visual Studio 2013 permanently?


Tools, Options, Source Control, Plug-in Selection, None

Answer by Aebsubis for How can you disable Git integration in Visual Studio 2013 permanently?


As you said you can disable the source control plugin going to:

  • Tools / Options
  • Check "Show all settings"
  • Source Control / Plug-in Selection
  • Set "Current source control plug-in" to "None"

Then, as Ade Miller says: Restart Visual Studio.

My Visual Studio was working really slow since the git plugging was enabled and I managed to disable it "persistently across sessions" following this steps.

Hope it helps.

Answer by hlovdal for How can you disable Git integration in Visual Studio 2013 permanently?


(Update: This answer now provides a fully working solution based my deeper understanding of GIT_DIR and GIT_WORK_TREE)

Summary: Git is flexible enough that you are able to move the .git directory to a place outside the work directory with the files checked out from tfs. This makes it then possible to have a 100% clean tfs checkout without any traces of git that visual studio is able to detect while still being able to operate it as a git repositiory. The key is to separate the git dir (git repository storage) and the work tree (your checked out source code).

Say that your source code is checked out in c:\work\someproject\tfscode and you already have run git init there, e.g. visual studio detects the c:\work\someproject\tfscode\.git directory and that causes trouble.

To make life more plessant do the following:

$ cd /cygdrive/c/work/someproject  $ mv tfscode/.git tfscode.git  $ echo export GIT_DIR=/cygdrive/c/work/someproject/tfscode.git >> env.sh  $ echo export GIT_WORK_TREE=/cygdrive/c/work/someproject/tfscode >> env.sh  $ source env.sh  $ cd tfscode  $ git status  ...  $  

This works perfectly with regards to visual studio since it then is completely ignorant of anything stored in git.

Answer by Alex for How can you disable Git integration in Visual Studio 2013 permanently?


For me, creating the repository with the following command fix the problem:

git init --separate-git-dir _git  

Since it doesn't create a .git directory, only a .git file pointing to the real repository directory, e.g.:

gitdir: C:/tfs/ProjectName/Main/_git  

Visual Studio (at least update 3) doesn't notice it!

This worked better than the environment variable stuff because Git Extensions (that I'm using) had problem supporting that, but dealt with the .git file pointing to a _git folder perfectly.

Answer by mxmissile for How can you disable Git integration in Visual Studio 2013 permanently?


NoGit Visual Studio extension handles this behavior.

Bonus: awesome description.

Answer by Artalus for How can you disable Git integration in Visual Studio 2013 permanently?


I had the same problem with Visual Studio 2015, where NoGit extension wasn't even allowed to install. I use the "open last solution on start-up" option so I thought that maybe this was somehow connected to the problem.

So I simply closed my solution before going to "Tools - Options - Source Control", then turned it off, restarted VS and - voila, SC stayed turned off! Hope it stays so in other solutions as well.

Answer by Ed Andersen for How can you disable Git integration in Visual Studio 2013 permanently?


For Visual Studio 2015, I found that CodeLens was re-enabling the Git Source Control plugin after restarting. Disabling CodeLens fixed this.

Answer by bluee for How can you disable Git integration in Visual Studio 2013 permanently?


VS2015 was sucking up 50% of my CPU when idle. I learned that disabling Git was the solution. Unfortunately disabling Git only to learn it automatically re-enables it.

In my case I actually wanted to use Git but not with 50% cpu usage.

As NoGit solution is only available for VS2013, you can instead download: Git Source Control Provider even if you don't use Git. My CPU usage is now 2,2% instead of 50% when idle.

Answer by Ben Wilde for How can you disable Git integration in Visual Studio 2013 permanently?


Use new NoGit extension package: https://github.com/markrendle/nogit/releases/download/1.0.5/NoGit.vsix

Download and add to visual studio: http://superuser.com/questions/73675/how-do-i-install-a-vsix-file-in-visual-studio

Easy.

Answer by sb.olofsson for How can you disable Git integration in Visual Studio 2013 permanently?


This worked for me in Visual Studio 2013 and 2015. Persists even though you close and re-open Visual Studio.

  1. Open the solution

  2. Go to Tools -> Options -> Source Control -> Set plugin to None

  3. Close Visual Studio and execute the command below with administrative rights.

  move "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Microsoft.TeamFoundation.Git.Provider.dll" "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation\Team Explorer\Microsoft.TeamFoundation.Git.Provider.dll.bak"  

Answer by isol for How can you disable Git integration in Visual Studio 2013 permanently?


I had a hard time finding a solution for this, and made it after so many attempts, so I can't be precise. Create another local repository using GitHub Desktop in another folder. Done this, open Visual Studio without loading a project, now Team Explorer should show up both repositories. Select the new repository as you should do some operations, at this pont you can "remove" your old repository, since the new one is the "active" one. After doing this, I removed the .hidden .git* files from the former folder. Now opening the project does not cause the old repository to be re-created again. Hope this helps.

Answer by Jrme Mvel for How can you disable Git integration in Visual Studio 2013 permanently?


That's crazy but what worked for me was to Empty my Recycle Bin (which contained the unwanted .git folder of my solution).

I still can't believe it...

Answer by Maks for How can you disable Git integration in Visual Studio 2013 permanently?


Remove the Microsoft GitProvider from Visual Studio 2015

Link: http://researchaholic.com/2015/02/02/remove-the-microsoft-gitprovider-from-visual-studio-2013/

  1. Make sure Visual Studio is closed
  2. Open regedit
  3. Navigate to HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\14.0_Config\SourceControlProviders
  4. Delete 11b8e6d7-c08b-4385-b321-321078cdd1f8 In the details pane it should say GitProvider
  5. Open Visual Studio

Answer by Ivan Shakhov for How can you disable Git integration in Visual Studio 2013 permanently?


Rename "C:\Program Files (x86)\Microsoft Visual Studio 14.0\Common7\IDE\CommonExtensions\Microsoft\TeamFoundation"

VS will show error only once and work fine.

Answer by Soundararajan for How can you disable Git integration in Visual Studio 2013 permanently?


This git extension hell slows up everything in IDE (VS 2015 in my case). I had to remove the entire TeamFoundation folder to get rid of this. The downside is that you will not be able to use Git and TeamFoundation in Visual Studio 2015. Note: Backup this folder elsewhere and restore it when needed.

To delete the folder i did this. The steps i followed to delete the right folder

The reason i did this is because , VS 2015 generates random folder name for the TeamFoundation extension, so my folder name could be different than yours.

Answer by John Brett for How can you disable Git integration in Visual Studio 2013 permanently?


One reason for the git SCC being re-enabled in VS2015 every time the IDE loads is CodeLens. Tools/Options/Text Editor/All Languages/CodeLens There's a checkbox for various activities involving TFVS and Git - having any of those git checkboxes checked will automatically enable the Git plugin if it thinks you're working on a git repo.

Answer by Sergei Meleshchuk for How can you disable Git integration in Visual Studio 2013 permanently?


You need to close all VS solutions. start one, set Menu\tools\options\Source Control\Git-->None, close this solution when prompted. Now, when opening any other solution, the options stays "None".


Fatal error: Call to a member function getElementsByTagName() on a non-object in D:\XAMPP INSTALLASTION\xampp\htdocs\endunpratama9i\www-stackoverflow-info-proses.php on line 72

0 comments:

Post a Comment

Popular Posts

Powered by Blogger.