Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Down arrow in Xcode [duplicate]

Tags:

xcode

I know about M, A, U, ?, R, I.

I searched for the and C but not found any helpful resources.

This post doesn't contain info about .

Can anyone tell me what indicates these symbols?

Thank you in advance.

enter image description here

like image 786
sohan vanani Avatar asked Nov 16 '17 06:11

sohan vanani


2 Answers

C means conflict — you tried to merge (or implicitly merge due to a pull) a branch where, in the marked file, git can't automatically resolve the differences between your working copy and the other branch. You'll need to use Xcode's version editor or an external tool to manually decide which changes from each side to keep, then tell git that the conflicts are resolved (IIRC in Xcode you can do this by right-clicking on the file in the navigator).

means your working copy is "behind" the other branch by some number of commits (in this case, because the conflict meant it couldn't catch up).

like image 56
rickster Avatar answered Sep 27 '22 18:09

rickster


Down arrow indicated that your local working directory has changes. C means conflict your local file and remote file has changes in same places.

like image 37
Manish Mahajan Avatar answered Sep 27 '22 19:09

Manish Mahajan