Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

enter image description here

What are the significance of the letters beside the files in the Project Navigator? (e.g M,A)

share|improve this question

2 Answers

up vote 17 down vote accepted

Those letters beside files in the Project Navigator of Xcode show the status of files that are under version control systems, such as SVN or Git. So, for instance:

  • M - means the file has changed and it should be merged into SCM
  • A - means this is a new file and should be added to SCM
  • U - means this is a newer version of a file on SCM and you need to update it
  • ? - means the file has not been added to source control
  • etc...

P.S. You can find list of statuses (at least for SVN) here

share|improve this answer
thanks, ill correct this after 9 mins. :D – Bacalso Vincent Sep 1 '11 at 7:53

Well, my project is not part of source control, yet the same icons are there. So there must be more to it.

UPDATE: Bacalso Vincent is correct, I did enable GIT on creating the project. I had completely forgotten about that though.

share|improve this answer
maybe you checked enabled git, during creation of your project – Bacalso Vincent Jan 31 at 10:02

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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