12

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

wfbarksdale
  • 7,498
  • 15
  • 65
  • 88

2 Answers2

24

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.

Can Berk Güder
  • 109,922
  • 25
  • 130
  • 137
4

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

Andrew Marshall
  • 95,083
  • 20
  • 220
  • 214