**Unable to create snapshot**
The following paths are ignored by one of your .gitignore files:
/path/to/project/.DS_Store
Use -f if you really want to add them
fatal: no files added
这就是我得到任何想法的错误?!? google很多快照问题似乎都不适合我的错误信息
答案 0 :(得分:4)
删除.DS_STORE(它们不是真正需要的,它们存储Finder相关的元数据)。
使用以下命令:
sudo find /path/to/project -name ".DS_Store" -depth -exec rm {} \;
答案 1 :(得分:0)
你也可以从你的gitignore配置中删除.DS_STORE
(虽然它真的应该被忽略,因为你不想在你的仓库中使用这个无用的文件),只需从~/.gitignore
或{{1}的文件中删除它}}