在尝试使用 git 设置 dropbox 文件夹时,我看到了一个不是我创建的“Icon\r”文件。我尝试在 ~/.gitignore 文件中忽略它。但是添加 Icon\r
Icon\r\r
Icon?
根本不起作用。
最佳答案
图标?是 OS X 文件夹图标的文件。这 ”?”是双回车的特殊字符 (\r\r)。
打开终端并导航到您的存储库文件夹,然后键入:
printf "Icon\r\r" > .gitignore
或者,如果 .gitignore 文件存在且不为空:
printf "Icon\r\r" >> .gitignore
更新
正如 robotsspacer 所建议的,根据 hidn 的 0x2513412 更好:4
printf "Icon[\r]" >> .gitignore
关于macos - 如何忽略图标?在 git 中,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17556250/