[SVN] SVN在Eclipse里的各个状态解释

中文意义:
A代表添加
D代表删除
U代表更新
C代表合并,并且合并中有冲突
G代表合并,合并中没有冲突
每个字母代表的意义:

U = item (U)pdated to repository version

G = item’s local changes mer(G)ed with repository

C = item’s local changes (C)onflicted with repository

D = item (D)eleted from working copy

A = item (A)dded to working copy

更多:

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.

参考:

http://svnbook.red-bean.com/en/1.7/svn.ref.svn.c.status.html

http://stackoverflow.com/questions/2034/what-do-the-result-codes-in-svn-mean

原文地址:https://www.cnblogs.com/garinzhang/p/svn_eclipse_status_explaination.html