在 Xcode 中,在左侧的导航区域,在几个文件旁边,右侧有一个小图标徽章,M
或者有时A
.
那是做什么用的?
在创建新项目时我是否有任何选项被选中,或者是否有任何项目设置对此负责?
这是因为您可能在创建应用程序项目时选择了如下图所示的选项,因此这将为您的应用程序创建一个存储库:
A indicates Added Files
M indicates Modified Files which are came by default with project
这会响应您的 git/svn 存储库
M
Locally modified
U
Updated in repository
A
Locally added
D
Locally deleted
I
Ignored
R
Replaced in the repository
–
The contents of the folder have mixed status; display the contents to see individual status
?
Not under source control
不,它只是向您显示文件是 A 表示已添加,M 表示用户已修改
这可能是因为您在创建项目时启用了 Git SCM。M 表示修改,A 表示添加。当您提交更改时,标记将消失。