Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to disable version control in phpstorm?

Tags:

phpstorm

I am playing around with phpstorm and somehow I activated version control. I don't need it. Now all my tabs are different: orange text on gray background. All files in the file view are orange. How do I disable version control?

like image 772
MilMike Avatar asked Dec 20 '13 12:12

MilMike


People also ask

What is VCS PhpStorm?

PhpStorm supports version control integration at two levels: At the IDE level, VCS integration is provided through a set of bundled plugins enabled by default. At the project level, VCS integration is enabled by associating project folders with one or several version control systems.

How do I disable version control in Intellij?

Go to Settings (Preferences on macOS) | Version Control | Directory Mappings, select the mapping(s), click [-] icon or press Delete to remove the mapping or change the association to None .

What is Unversioned files in PhpStorm?

The Unversioned Files changelist shows all files that have been added to your project, but that are not being tracked by Git.

How do I enable VCS in Intellij?

Press Alt+` to open the VCS Operations Popup and select Enable Version Control Integration. Alternatively, from the main menu, select VCS | Enable Version Control Integration.


2 Answers

Go to Settings -> Version Control and remove the folder from which you would like to remove version control tracking (coloring tabs etc.) It will naturally not remove version control from your project (as in deleting the .git/ folder for instance).

like image 149
Greg Avatar answered Oct 31 '22 16:10

Greg


The ultimate way is to disable all version control plugins (under Settings -> Plugins): CVS Integration, Git Integration, GitHub, hg4idea, Perforce Integration, Subversion Integration. After restarting PhpStorm Settings -> Version Control tab will be gone.

Note that this will disable version control for all of your projects.

like image 39
mixel Avatar answered Oct 31 '22 17:10

mixel