我在 Xcode 上的源代码控制中遇到了这个随机问题。我已经将 Git 集成到我的项目中,但现在它没有意识到对某些文件进行了更改,并且不会让我提交它们。
A永远不会变成M,文件不会变灰,表明它需要保存。
一般有2种可能:
.gitignore
文件中,git update-index --assume-unchanged -- /path/to/file # 或者: git update-index --skip-worktree -- /path/to/file
第一个检查是查看 shell 会话中的 git status 是否显示相同的问题(修改后的文件不会显示在 中git status
)