我正尝试像休息一样添加gradle.properties
,但仍然更改,即文件更改以git状态显示。
是否还有其他方法可以使用android studio在git-ignore
中添加文件。
答案 0 :(得分:8)
You should use git rm
to untrack the gradle.properties
file first.
git rm --cached gradle.properties
git commit -m "Remove gradle.properties"
Then add the following line to your project .gitignore
file
gradle.properties
Commit and push that and any new changes to this file should not be tracked.
答案 1 :(得分:0)
似乎您已经将此文件添加到了回购中,然后您想忽略它。在这种情况下,您的文件位于“索引/暂存”区域中,因此git会将其显示在已更改的文件列表中。
因此,您需要从索引/暂存区域中删除此文件,只需清除git缓存即可。执行以下命令
git rm --cached gradle.properties
阅读有关Untrack files already added to git repository based on .gitignore
的更多详细信息答案 2 :(得分:0)
使用gitignore插件的最简单方法是,右键单击要隐藏的文件,然后会看到“添加到gitignore”选项,选择它并完成。