我有an Android library,出於某種原因,我在我的.gitignore
中指定的文件和文件夾不會被忽略。Gitignore不會忽略Android庫中的一些構建文件
我試過修改我的.gitignore
以及these steps,但這並沒有改變任何東西。
這裏是我的頂級.gitignore
(這也可以找到on the GitHub repo):
# Gradle files
.gradle/
build/
*/build/
# Local configuration file (sdk path, etc)
local.properties
# IntelliJ
*.iml
/.idea
的module with the build
folder that isn't being ignored具有以下.gitignore
:
/build/
我不知道爲什麼build
目錄不會被忽略,因爲它在我的sample app module和top-level directory中被忽略。
此外,當我更新我的庫的版本時,我確實對build
目錄中的某些文件進行了更改,如果這很重要。
也許這會有所幫助:http://stackoverflow.com/a/1139797/3187439 – daco
我剛剛下載的.gitignore插件工作室,被確定忽略完成以及 –
謝謝@daco,你的評論幫助我解決了我的問題。 –