Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

removing IntelliJ project from version control

Is there a way to remove version control from an IntelliJ project? I could go through the directory structure and remove all the .svn files on the command line, but I just wonder if there's a "proper" or easier way to do that? Thanks in advance.

like image 562
vector Avatar asked Oct 17 '11 23:10

vector


3 Answers

I suppose the best way is to remove svn configuration in the project settings:

File > Settings, then Version Control. There should be Suversion item in the list. Try to remove this line with the "-" button on the right.

Hope this helps.

like image 86
Jean Lestang Avatar answered Sep 17 '22 19:09

Jean Lestang


File -> Settings -> Version Control -> select Project -> Click button(red)

enter image description here

like image 37
ethemsulan Avatar answered Sep 19 '22 19:09

ethemsulan


Can you better phrase your question...

IntellJ is an IDE. If you're using it to download source code from a Subversion repository, try the export command instead of checkout. That will download all the source files without the .svn directories. Of course, you'll be unable to check in any of your changes back into the Subversion repository.

Open the repository browser, then right click on the directory instead of pressing the Checkout button on the bottom. You'll see the export menu item. Select that, and that will checkout the source from the Subversion repository without the .svn folders. Of course, you won't be able to check anything back in.

like image 41
David W. Avatar answered Sep 17 '22 19:09

David W.