1
I started working with git and wish to remove all traces of SVN from my project in Android Studio. I don’t want to see the color titles for versioned, versioned, or commit hysterical anymore so it doesn’t get any interference when you set up git.
1
I started working with git and wish to remove all traces of SVN from my project in Android Studio. I don’t want to see the color titles for versioned, versioned, or commit hysterical anymore so it doesn’t get any interference when you set up git.
2
Remove all . svn folders from your project, "recursively".
Under linux, you can use the following command:
find . -iname ".svn" -print0 | xargs -0 rm -r
Browser other questions tagged android-studio svn
You are not signed in. Login or sign up in order to post.
Thanks, now yes Android Studio no longer recognizes the project in SVN!
– LeoSantana