如何在 git-ignore 文件 android 中添加 gradle.properties? [复制]
Posted
技术标签:
【中文标题】如何在 git-ignore 文件 android 中添加 gradle.properties? [复制]【英文标题】:How to add gradle.properties in git-ignore file android? [duplicate] 【发布时间】:2018-11-29 03:04:32 【问题描述】:我正在尝试像休息一样添加gradle.properties
,但仍然会更改文件更改显示在 git 状态中。
有没有其他方法可以使用android studio在git-ignore
中添加文件。
【问题讨论】:
【参考方案1】:您应该先使用git rm
取消跟踪gradle.properties
文件。
git rm --cached gradle.properties
git commit -m "Remove gradle.properties"
然后将以下行添加到您的项目.gitignore
文件中
gradle.properties
提交并推送该文件,不应跟踪对此文件的任何新更改。
【讨论】:
【参考方案2】:您似乎已经将此文件添加到 repo,然后您想忽略它。在这种情况下,您的文件存在于索引/暂存区域中,因此 git 将其显示到更改的文件列表中。
所以你需要从索引/暂存区域中删除这个文件,你只需要清理 git 缓存。执行以下命令
git rm --cached gradle.properties
阅读更多关于Untrack files already added to git repository based on .gitignore的详细信息
【讨论】:
【参考方案3】:最简单的方法是使用 gitignore 插件,只需右键单击要隐藏的文件,您就会看到添加到 gitignore 选项,选择它并完成。
【讨论】:
以上是关于如何在 git-ignore 文件 android 中添加 gradle.properties? [复制]的主要内容,如果未能解决你的问题,请参考以下文章