Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Xcode letters beside files in Project Navigator

Tags:

xcode

enter image description here

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

like image 422
Vincent Bacalso Avatar asked Sep 01 '11 07:09

Vincent Bacalso


People also ask

What does M and a mean in Xcode?

Tags such as "M" or "A" next to files in Xcode indicates that your project in under SVN/GIT repository. "M" indicates content of file Modified whereas "A" for file Added.

What does R mean in Xcode?

M = Locally modified U = Updated in repository A = Locally added D = Locally deleted I = Ignored R = Replaced in the repository – = The contents of the folder have mixed status; display the contents to see individual status ? = Not under source control.

What is M+ file in Xcode?

Since M files are objective-c files, they are used for the implementation of Apple's Mac OS X and iOS operating system applications. There are many applications that can open M files and one of the most popular applications used is the Apple Xcode by which M files are considered part of its projects.

How do I refresh project navigator Xcode?

For a single file, you can open the external file in Xcode and cmd + s to save it, it will be refreshed in Xcode. Also, for the quick way you can just chose the external folder in Xcode and cmd + s , it will refresh all your external file in this folder.


1 Answers

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

like image 73
Vladimir Avatar answered Sep 29 '22 08:09

Vladimir