'Remove IntelliJ Project Version Control
I am managing svn with a third party application.
How do I remove all version control associated with a project in IntelliJ?
Solution 1:[1]
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.
Solution 2:[2]
Alternatively, you can delete the vcs.xml which exist under the .idea folder;
.idea/vcs.xml
Solution 3:[3]
Just to add to the answers above. For one of my projects I had not only VCS (git) enabled, but also connected it to a remote repository. To start from a clean slate you can,
- Go to
File|Settings|Version Controland click-. This will disable the VCS and list it underUnregistered roots: - If you really want to get rid of that
Unregistered roots:entry and all of the tracking information, go to your project folder and delete the..\projectDir\.git\folder also (provided that your were using git as your vcs)
Solution 4:[4]
VCS -> Git -> Remotes... and opened Git remotes window. Then you can delete, edit or add the remote connection what you want.
Solution 5:[5]
For me VCS totally removed this way:
"You could disable all VCS-related plugins in Settings: File | Settings | Plugins."
(answer from this page: https://rider-support.jetbrains.com/hc/en-us/community/posts/115000709890-Turn-off-vcs-integration-by-default)
Solution 6:[6]
To remove the vcs in Intellij Project Follow this steps -
- Open Setting or Press
CTRL + ALT + S - Go to Version Control
- Select the
noneoption for the directory
Still Stuck checkout this
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | |
| Solution 2 | Levent Divilioglu |
| Solution 3 | Bobbie E. Ray |
| Solution 4 | iceberg |
| Solution 5 | vlapas |
| Solution 6 | Harkirat Singh |
