本文翻译自:What do the result codes in SVN mean?

What do the result codes in SVN mean? SVN中的结果代码是什么意思? I need a quick reference. 我需要快速参考。


#1楼

参考:https://stackoom.com/question/Wo/SVN中的结果代码是什么意思


#2楼

I want to say something about the "G" status, 我想谈谈“G”状态,

G: Changes on the repo were automatically merged into the working copy G:回购的变化自动合并到工作副本中

I think the above definition is not cleary, it can generate a little confusion, because all files are automatically merged in to working copy, the correct one should be: 我认为上面的定义不是很明确,它可能会产生一些混乱,因为所有文件都自动合并到工作副本中,正确的应该是:

U = item (U)pdated to repository version U =项目(U)pdated到存储库版本

G = item's local changes mer(G)ed with repository G =项目的本地更改mer(G)ed with repository

C = item's local changes (C)onflicted with repository C =项目的本地更改(C)与存储库有关

D = item (D)eleted from working copy D =从工作副本中选出的项目(D)

A = item (A)dded to working copy A =项目(A)等于工作副本


#3楼

There is also an 'E' status 还有'E'状态

E = File existed before update E =更新前存在文件

This can happen if you have manually created a folder that would have been created by performing an update. 如果您手动创建了一个通过执行更新而创建的文件夹,则会发生这种情况。


#4楼

Take a look in the Subversion Book reference: "Status of working copy files and directories" 看一下Subversion Book参考: “工作副本文件和目录的状态”

Highly recommended for anyone doing pretty much anything with SVN. 强烈建议任何人使用SVN做任何事情。


#5楼

Also note that a result code in the second column refers to the properties of the file. 另请注意,第二列中的结果代码是指文件的属性。 For example: 例如:

U   filename.1U  filename.2
UU  filename.3

filename.1: the file was updated filename.1:文件已更新
filename.2: a property or properties on the file (such as svn:keywords) was updated filename.2:更新了文件中的一个或多个属性(例如svn:keywords)
filename.3: both the file and its properties were updated filename.3:文件及其属性都已更新


#6楼

For additional details see the SVNBook: "Status of working copy files and directories" . 有关其他详细信息,请参阅SVNBook: “工作副本文件和目录的状态” 。

The common statuses: 常见状况:

U : Working file was updated U :工作文件已更新

G : Changes on the repo were automatically merged into the working copy G :回购的变化自动合并到工作副本中

M : Working copy is modified M :修改工作副本

C : This file conflicts with the version in the repo C :此文件与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) A + :此文件将被移动(提交后)

D : This file will be deleted (after commit) D :此文件将被删除(提交后)

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 S :这表示文件或目录已从工作副本的其余部分(使用svn开关)切换到分支

I : Ignored :无视了

X : External definition X :外部定义

~ : Type changed :类型已更改

R : Item has been replaced in your working copy. R :项目已在工作副本中替换。 This means the file was scheduled for deletion, and then a new file with the same name was scheduled for addition in its place. 这意味着该文件已安排删除,然后在其位置安排了一个具有相同名称的新文件。

L : Item is locked L :项目被锁定

E : Item existed, as it would have been created, by an svn update. E :项目存在,因为它本来是由svn更新创建的。

SVN中的结果代码是什么意思?相关推荐

  1. svn中的revert和update

    svn中的revert和update 今天有人问到revert和update的问题. 刚开始还真被问住了. 因为感觉revert和update都可以将本地的copy更新到以前的一个版本,会有什么不同呢 ...

  2. SVN中 “containing working copy admin area is missin

    http://blog.csdn.net/duguduchong/article/details/8861570 一.前言 场景描述 通过SVN中创建了一个目录 ,结果没有在svn中删除 ,而是直接到 ...

  3. SVN中tag branch trunk用法详解

    来源:http://developer.51cto.com/art/201005/201718.htm 本节主要讲解一下SVN中tag branch trunk的用法,在SVN中Branch/tag在 ...

  4. 如何彻底删除SVN中的文件和文件夹(附恢复方法)

    在SVN中如果删除某个文件或文件夹也可以在历史记录中进行找回,有的时候需要彻底删除某些文件,即不希望通过历史记录进行恢复,需要在服务器上对SVN的数据进行重新整理 这里假设SVN项目的目录为 /dat ...

  5. svn中status为missing的文件的处理方式

    svn中status为missing的文件在每次commit时都会出现在待提交的列表里,而且它的上级文件夹前面有个红色的点,有碍观瞻,处理方式也很简单: 1.在待提交的列表里,右击该文件->de ...

  6. SVN中的trunk branches tags

    SVN中的trunk branches tags trunk:   表示开发时版本存放的目录,即在开发阶段的代码都提交到该目录上. branches:   表示发布的版本存放的目录,即项目上线时发布的 ...

  7. SVN中Branch/tag的比较

    在SVN中Branch/tag在一个功能选项中,在使用中也往往产生混淆. 在实现上,branch和tag,对于svn都是使用copy实现的,所以他们在默认的权限上和一般的目录没有区别.至于何时用tag ...

  8. svn中有的代码被标注黄色,绿色和红色,分别表示什么意思呢?

    svn中有的代码被标注黄色,绿色和红色,分别表示什么意思呢? 2013-09-13 07:30立志大灰郎  分类:网站使用 | 浏览 1989 次 svn中的"@@ -0,0 +1,65 @ ...

  9. Svn中可能出现的问题解决办法

    http://blog.sina.com.cn/s/blog_8acf1be10101i5bo.html 百度很多解决Path is not a working copy directory的方法,唯 ...

最新文章

  1. python3.6安装教程-Ubuntu16.04安装python3.6详细教程
  2. Elasticsearch-05Elasticsearch之查询与过滤
  3. 深度学习实践总结:Sentiment Classification How To Frame Problems for a Neural Network
  4. 计算机常用的数制及编码
  5. git commit时避免填写Commit Message
  6. python 蓝牙模块pybluz安装
  7. wpf button无边框_中国式新房无玄关?客厅真不缺这点面积!
  8. Node.js 应该用在什么地方
  9. 统计函数应用之SQL 分析函数
  10. 中文论文检索证明怎么开_论文检索证明是什么,如何获得呢?
  11. java生成base64条形码
  12. pmp练习题及其答案
  13. 腾讯云账号实名认证和域名实名认证的区别
  14. 同济大学软件学院特聘教授朱少民谈《测试,从哪里来,到哪里去》
  15. 群发短信平台哪个好?推荐阿里云短信平台
  16. 体脂秤模块的原理和基本功能说明
  17. 详解变分自编码器VAE(Variational Auto-Encoder)
  18. java向gis数据库读写数据_java – PostGIS数据库中Geography Polygon的读取点
  19. 数字人轻松学习Blender系列之八:建模-6
  20. 计算机相关专业电气EE,美国电子电气工程(EE)专业的11个主要研究方向

热门文章

  1. oh-my-zsh主题power10k安装配置教程
  2. 世界上为什么有那么多的不幸的人
  3. Houdini to ue4 入门笔记 第一章
  4. 跨域问题和origin
  5. 串口驱动、secureCRT、tftp解决方案
  6. 微信小程序真机调试不能访问本地API
  7. 鸿蒙启智 博学多才,花园小学:浩荡儒风续 鸿蒙今日开
  8. 业务暴增的今日头条,牵手英特尔意欲何为?
  9. 《码出高效:java开发手册》六-数据结构与集合(一)
  10. linux下ant编译android,linux(以ubuntu为例)下Android利用ant自动编译、修改配置文件、批量多渠道,打包生...