android - What goes into Source Control? -
given: http://developer.android.com/resources/faq/commontasks.html#filelist
- what best practices getting projects source control? ask because if right click on project, choose team, etc. end /bin & /gen folders, .classpath eclipse related items.
- if i'm inheriting project .../workspace/projectname et al. included how can clean include items relevant aforementioned url?
i summarized findings in blog post can found here: http://www.aydabtudev.com/2011/05/what-goes-into-source-control-android.html
i executed following commands within project folder them out of source control:
svn rm --keep-local .classpath svn rm --keep-local .project svn rm --keep-local default.properties svn rm --keep-local proguard.cfg svn rm --keep-local bin/ svn rm --keep-local gen/
then executed following command add them ignore list:
svn pe svn:ignore .
add each item above without associated command so:
.classpath .project bin/ ...
i followed commit , update solidify changes.
svn commit -q -m "removing files" . svn update
it seem smarter way configure ignored resources under eclipse team preferences.
Comments
Post a Comment