Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What files should I ignore in an Android Project on SVN

Tags:

android

svn

I have added the 'gen' folder to svn:ignore, are there any others I should be ignoring?

Update:

There are some I am unsure about

.classpath .project The .settings folder 

And also, to ignore a folder I am just typing gen into the ignore list in subclipse, is this correct? How would it know if gen is a folder or file?

like image 612
jax Avatar asked Jun 30 '10 04:06

jax


People also ask

What does svn ignore do?

The svn:ignore property is a good way to tell Subversion to ignore files that are likely to be present in every user's working copy of that directory, such as compiler output or—to use an example more appropriate to this book—the HTML, PDF, or PostScript files generated as the result of a conversion of some source ...

How do I ignore a class file in svn?

You can ignore a file or directory like . gitignore. Just create a text file of list of directories/files you want to ignore and run the code below: svn propset svn:ignore -F ignorelist.

How do I ignore a folder in svn?

If you want to ignore all CVS folders, just add CVS to the ignore list. There is no need to specify CVS */CVS as you did in earlier versions. If you want to ignore all tmp folders when they exist within a prog folder but not within a doc folder you should use the svn:ignore property instead.

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

Just ignore gen and bin directories.

like image 128
Fedor Avatar answered Sep 20 '22 15:09

Fedor