写点什么

SVN 修订版本关键字

作者:攻城狮杰森
  • 2022 年 7 月 12 日
  • 本文字数:946 字

    阅读完需:约 3 分钟

SVN 修订版本关键字

来自阿里的一道测试题目,刚好了解下 SVN 中修订版本关键字,评论留言你的答案

题目

【单选题】关于 SVN 中修订版本关键字,描述错误的是?


A. HEAD 工作拷贝中的最新的版本


B. BASE 工作拷贝中一个条目的修订版本号,如果这个版本在本地修改了,则“BASE 版本’就是这个条目在本地未修改的版本


C. COMMITTED 项目最近修改的修订版本,与 BASE 相同或更早


D. PREV 一个项目最后修改版本之前的那个版本,技术上可以认为是 COMMITTED-1

Revision Keywords

The Subversion client understands a number of revision keywords. These keywords can be used instead of integer arguments to the --revision (-r) option, and are resolved into specific revision numbers by Subversion:


Subversion 客户端可以理解一些修订版本关键字,这些关键字可以用来代替 --revision (r) 的数字参数,这会被 Subversion 解释到特定修订版本号:

HEAD

The latest (or “youngest”) revision in the repository .


版本库中最新的(或者是“最年轻的”)版本

BASE

The revision number of an item in a working copy . If the item has been locally modified, this refers to the way the item appears without those local modifications.


工作拷贝中一个条目的修订版本号,如果这个版本在本地修改了,则“BASE 版本”就是这个条目在本地未修改的版本

COMMITTED

The most recent revision prior to, or equal to, BASE, in which an item changed.


项目最近修改的修订版本,与 BASE 相同或更早

PREV

The revision immediately before the last revision in which an item changed. Technically, this boils down to COMMITTED-1.


一个项目最后修改版本 之前 的版本,技术上可以认为是 COMMITTED -1


As can be derived from their descriptions, the PREV , BASE , and COMMITTED revision keywords are used only when referring to a working copy path—they don't apply to repository URLs. HEAD, on the other hand, can be used in conjunction with both of these path types.


因而可以从描述中得到,关键字PREVBASECOMMITTED只在引用工作拷贝路径时使用,而不能用于版本库 URL, 而关键字 HEAD 则可以用于两种路径类型




参考资料


发布于: 刚刚阅读数: 3
用户头像

#以梦为码,不负年华 2022.07.02 加入

目前计算机专业在读,阿里云专家博主,华为云云享专家,51CTO 博客专家,喜欢各类竞赛,熟悉 c/c++,java,html,css,javascript,python...竭力成为一名 Full Stack Developer. 关注杰森,与你同行,共同进步!

评论

发布
暂无评论
SVN 修订版本关键字_svn_攻城狮杰森_InfoQ写作社区