What do the “M” and “A” icons in the Project Navigator of Xcode 4 mean when I create a new project?

后端 未结 11 1765
小鲜肉
小鲜肉 2020-12-05 07:28

Xcode 4 is showing me grey \"M\" and \"A\" icons next to my files in the project navigator. I believe they\'re related to source control.

The point is this: All my o

11条回答
  •  失恋的感觉
    2020-12-05 07:42

    Those characters refer to the source control.

    • ? - Unversioned
    • M - Modified
    • A - Added
    • A+ - Moved / renamed
    • U - Newer version of a file on source control
    • I - Item is being ignored (e.g. with the svn:ignore property).
    • ! - Item is missing (e.g. you moved or deleted it without using svn). This also indicates that a directory is incomplete (a checkout or update was interrupted).

    Ref: http://svnbook.red-bean.com/en/1.2/svn.ref.svn.c.status.html

提交回复
热议问题