In eclipse, I had the custom of adding bin and gen directories to svn ignore. But now, using Android Studio (based on IntelliJ IDEA), what files should I ignore.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
See this IntelliJ IDEA KB article: "How to manage projects under Version Control Systems".
Add to Subversion:
/.idea
directory in the project root but ignore workspace.xml and tasks.xml,I added the following items in my
.gitignore
, it should be the same for SVN:I've used the following SVN ignore list sucessfully:
The ignore should be applied recursively.
Reference: Same question, for git