xcode 左边导航栏中符合含义详解
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” 标记,表示该文件与服务器的文件冲突。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!
推荐阅读