I've just noticed that XCode shows "A+" symbol related with source control. What does it mean?
Asked
Active
Viewed 6,745 times
14
-
19A+ means the file has been moved. More info here: http://stackoverflow.com/questions/2034/what-do-the-result-codes-in-svn-mean – user2129800 Nov 26 '13 at 19:47
1 Answers
19
A+ stands for moving a file (renaming is treated as moving). All credit goes to user2129800, whose answer is in the comment under the question.

Tomasz Bąk
- 6,124
- 3
- 34
- 48
-
2Maybe changing the name causes A+ but I have a file with A+ and its name never changed. The reason must be something more general. – RobertL Oct 02 '13 at 18:49
-
Not sure that moving is the only reason. I just created a class and coded a bit. Now .h has "A" aka New, and .m somehow has "A+". I did not move or rename anything. – NKorotkov Sep 11 '15 at 11:05
-
1Sometimes, when you delete a source and add a new file, very similar to the deleted one, version control will skip D and A states and mark it as A+ (rename). – Tomasz Bąk Sep 12 '15 at 09:48