How to remove Android project from SVN?

1

I started working with git and I want to remove all the remnants of SVN from my project in Android Studio. I no longer want to see the colored titles for versioned files, not versioned, nor the history of commits so that this does not have any interference when configuring git.

    
asked by anonymous 05.11.2015 / 20:32

1 answer

2

Remove all .svn folders from your project, "recursively".

In Linux, you can use the following command:

find . -iname ".svn" -print0 | xargs -0 rm -r

    
05.11.2015 / 21:54