有/android
目录设置android
项目(eclipse
)tree -a
看起来像这样:
.
├── AndroidManifest.xml
├── assets
├── bin
│ ├──
├── .classpath
├── gen
│ ├──
├── .gitignore
├── ic_launcher-web.png
├── libs
│ └──
├── lint.xml
├── proguard-project.txt
├── .project
├── project.properties
├── res
│ ├──
├── .settings
│ ├──
└── src
└──
此文件夹.gitignore
也设置为:
# generated files
bin/
gen/
# Eclipse project files
.classpath
.project
问题是git
没有考虑到它。示例:每次上面目录中的.classpath
被修改时,它都会在git
下标记为已修改。
/ android上有一个.gitignore,但它被提交为空。
此致