klefevre
klefevre

Reputation: 8735

Strange symbol in Xcode4 navigator

I would know what this symbol should mean ?
enter image description here

Upvotes: 1

Views: 217

Answers (1)

Webking
Webking

Reputation: 1862

If you have set up your project with a source code manager (Git repository) you can have different symbols in the navigator depending on the state of the file. Source code manager status is shown as a badge in the project navigator, as follows:

M = Locally modified

U = Updated in repository

A = Locally added

D = Locally deleted

I = Ignored

R = Replaced in the repository

enter image description here

Upvotes: 2

Related Questions