Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which files should I add to SVN ignore for an Android Studio project?

In Eclipse, I had the custom of adding bin and gen directories to SVN ignore. But now, using Android Studio (based on IntelliJ IDEA), which files should I ignore?

like image 593
elirigobeli Avatar asked Jun 05 '13 13:06

elirigobeli


People also ask

How do I ignore target folder in svn?

To ignore files in subversion you want to set the svn:ignore property. You can see more here http://svnbook.red-bean.com/en/1.8/svn.advanced.props.special.ignore.html about half way down. svn propset svn:ignore target . svn propedit svn:ignore .


1 Answers

I added the following items in my .gitignore, it should be the same for SVN:

  • gradle
  • .idea
  • *.iml
  • build
  • .DS_Store (for mac only)
like image 131
JulienC Avatar answered Sep 28 '22 06:09

JulienC