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

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

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.

link|improve this answer
feedback

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

link|improve this answer
Why the downvote? – Andrew Marshall Dec 1 '11 at 0:17
dude, total accident, if you edit your comment it should let me change it. haha sorry! – weezybizzle Dec 1 '11 at 0:32
No worries, just edited :) – Andrew Marshall Dec 1 '11 at 0:37
@weezybizzle Thanks :) – Andrew Marshall Dec 1 '11 at 0:45
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.