赞
踩
Android项目提交代码时一般忽略的文件:
1、.idea文件夹
2、所有的build文件夹
3、所有的.iml文件
4、local.properties文件。
方式一:
版本3.6之前
File >>> setting >>> version control >>> ignored file
版本3.6之后:
File ->setting->editor->File Types
方式二:
在项目的.idea/workspace.xml的文件里设置(不知为何没有生效)
- <?xml version="1.0" encoding="UTF-8"?>
- <project>
- <component name="ChangeListManager">
- ...
- <ignored path=".gradle/" />
- <ignored path=".idea/" />
- <ignored path="gradle/" />
- <ignored path="项目名/build/" />
- <ignored path="gradlew" />
- <ignored path="gradlew.bat" />
- <ignored mask="*.iml" />
- <ignored path="local.properties" />
- <ignored path="build/" />
- <ignored mask="*.apk" />
- </component>
- ...
- </project>
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。