How to remove Android project from SVN?

Asked

Viewed 178 times

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 answer

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

  • Thanks, now yes Android Studio no longer recognizes the project in SVN!

Browser other questions tagged

You are not signed in. Login or sign up in order to post.