在 Git 中有效忽略 .DS_Store 文件的最佳实践
在 macOS 系统中,.DS_Store 文件用于存储目录的自定义视图设置。尽管这些文件在使用 Finder 时很有用,但它们在 Git 仓库中却可能引发不必要的麻烦。为了保持代码库的整洁,以下是有效忽略 .DS_Store 文件的最佳实践。
在Git中忽略.DS_Store
文件,你可以在仓库的根目录下创建或编辑一个名为.gitignore
的文件,并在其中添加以下内容:
.DS_Store
这会告诉Git忽略所有名为.DS_Store
的文件。如果你想忽略所有目录下的.DS_Store
文件,可以使用通配符:
**/.DS_Store
这样,.gitignore
文件就会忽略项目中所有目录下的.DS_Store
文件。
如果.DS_Store
文件已经被跟踪(即它曾经被提交到了仓库中),你需要先手动从版本控制中移除它。可以使用以下命令:
git rm --cached .DS_Store
git commit -m "Remove .DS_Store files"
之后,.DS_Store
就会被添加到你的.gitignore
文件中,并且不再被Git跟踪。