码迷,mamicode.com
首页 > 其他好文 > 详细

xcode 左边导航栏中,类文件后面的标记“A”,"M","?"……等符号的含义???

时间:2014-10-29 19:25:16      阅读:119      评论:0      收藏:0      [点我收藏+]

标签:xcode类文件后面的符号   xcode 文件后面带有问号   ios   xcode      

"M" = Locally modified   
"U" = Updated in repository 
"A" = Locally added   
"D" = Locally deleted   
"I" = Ignored 
"R" = Replaced in the repository 
“–” "=" The contents of the folder have mixed status; display the contents to see individual status 
"?" = Not under source control 


‘A‘  新增

‘D‘  删除
‘M‘  修改
‘R‘  替代
‘C‘  冲突
‘I‘  忽略
‘?‘  未受控
‘!‘  丢失,一般是将受控文件直接删除导致

这些标记跟你使用的代码托管工具或者xcode自带的svn代码托管工具有关,怎样消除:

1、代码中 某文件后面有 “M” 标记,表示该文件已被修改,需要 commit.
      (右键该文件 -> source control -> commit selected file...)
2、代码中 某文件后面有 “A” 标记,表示该文件是新添加的,已受SVN管理,需要 commit.
      (右键该文件 -> source control -> commit selected file...)
3、代码中 某文件后面有 “?” 标记,表示该文件是新添加的,并且脱离了SVN的管理,首先需要add,然后 commit.
      (右键该文件 -> source control -> Add,这样该文件的标记就变为 “A”,然后在 commit)
4、代码中 某文件后面有 “D” 标记,表示该文件在服务器上已被删除,这时update的话,可删除本地的文件。
5、代码中 某文件后面有 “C” 标记,表示该文件与服务器的文件冲突。

xcode 左边导航栏中,类文件后面的标记“A”,"M","?"……等符号的含义???

标签:xcode类文件后面的符号   xcode 文件后面带有问号   ios   xcode      

原文地址:http://blog.csdn.net/u012460084/article/details/40590211

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!