본문 바로가기

프로그래밍/iOS

[ios] xcode scm status

프로젝트가 svn과 연동되어 있으면 파일을 수정했을 시 옆에 이상한 알파벳 문자가 붙어있는 경우가 많다.

각 알파벳의 의미가 궁금해서 이 기회에 정리


U: Working file was updated

G: Changes on the repo were automatically merged into the working copy

M: Working copy is modified

C: This file conflicts with the version in the repo

?: This file is not under version control

!: This file is under version control but is missing or incomplete

A: This file will be added to version control (after commit)

A+: This file will be moved (after commit)

D: This file will be deleted (after commit)

S: This signifies that the file or directory has been switched from the path of the rest of the working copy (using svn switch) to a branch

I: Ignored

X: External definition

~: Type changed

R: Item has been replaced in your working copy. This means the file was scheduled for deletion, and then a new file with the same name was scheduled for addition in its place.

 

매번 보는 글자들이지만 정확히 어떤 의미인지 난해해 적어 둔다.