wfbarksdale
wfbarksdale

Reputation: 7606

What does this small 'A' mean next to my files in Xcode?

So I dragged a few files into a new Xcode project and notice that the files I dragged in had little 'A's next to them. Does anybody know what this means?

enter image description here

Upvotes: 12

Views: 9787

Answers (2)

Andrew Marshall
Andrew Marshall

Reputation: 96934

It means the file's version control status is "added". See the Xcode documentation for more details.

Upvotes: 4

Can Berk Güder
Can Berk Güder

Reputation: 113310

That is the SCM (git, SVN, etc.) status of the file. 'A' stands for Added, 'M' stands for Modified, and '?' stands for Unknown (i.e. untracked file).

Xcode 4 creates a git repo for new projects by default. You can disable this on the New Project dialog if you wish.

Upvotes: 24

Related Questions