`
darrenzhu
  • 浏览: 816742 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

SVN Base and head revision

阅读更多
revision是修订版本的意思,别误当成reversion
简单的说,当你checkout一个版本下来,然后在本地做了修改,并且还没有提交代码,此时base代表没有本地修改的你刚才checkout的那个版本,head代表repository里面的最新版本(其它人可能有提交),当你提交后,并且没有他人提交,此时base应该与head相等。


HEAD is the latest revision in the repository. BASE is the last revision you have obtained from the repository. They are the same after a successful commit or update.

When you make changes, your files differ from the BASE copies. When you revert, they go back to matching the BASE revision. When you get a conflict, you do not update the repository. Rather, your files are considered to still be "being edited" as if you were making changes. After you resolve conflicts, you have in essence decided what the final files will look like and you then commit them as you would have normally. So, conflicts are like a case of special editing.


Revision reference:
http://svnbook.red-bean.com/en/1.7/svn.tour.revs.specifiers.html

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:

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.

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

PREV
The revision immediately before the last revision in which an item changed. Technically, this boils down to 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.

Here are some examples of revision keywords in action:

$ svn diff -r PREV:COMMITTED foo.c
# shows the last change committed to foo.c

$ svn log -r HEAD
# shows log message for the latest repository commit

$ svn diff -r HEAD
# compares your working copy (with all of its local changes) to the
# latest version of that tree in the repository

$ svn diff -r BASE:HEAD foo.c
# compares the unmodified version of foo.c with the latest version of
# foo.c in the repository

$ svn log -r BASE:HEAD
# shows all commit logs for the current versioned directory since you
# last updated

$ svn update -r PREV foo.c
# rewinds the last change on foo.c, decreasing foo.c's working revision

$ svn diff -r BASE:14 foo.c
# compares the unmodified version of foo.c with the way foo.c looked
# in revision 14
Revision Dates
Revision numbers reveal nothing about the world outside the version control system, but sometimes you need to correlate a moment in real time with a moment in version history. To facilitate this, the --revision (-r) option can also accept as input date specifiers wrapped in curly braces ({ and }). Subversion accepts the standard ISO-8601 date and time formats, plus a few others. Here are some examples.

$ svn update -r {2006-02-17}
$ svn update -r {15:30}
$ svn update -r {15:30:00.200000}
$ svn update -r {"2006-02-17 15:30"}
$ svn update -r {"2006-02-17 15:30 +0230"}
$ svn update -r {2006-02-17T15:30}
$ svn update -r {2006-02-17T15:30Z}
$ svn update -r {2006-02-17T15:30-04:00}
$ svn update -r {20060217T1530}
$ svn update -r {20060217T1530Z}
$ svn update -r {20060217T1530-0500}
分享到:
评论

相关推荐

    svn命令大全[PDF格式]

    $ svn diff --revision BASE:HEAD foo.c ``` - **显示自从上次更新以来的所有提交日志**: ``` $ svn log --revision BASE:HEAD ``` **用途**:这些命令主要用于比较不同版本之间的差异,以及查看提交历史记录...

    svn命令linux

    - `--revision BASE:HEAD`比较本地无改动的文件与远程最新版本的差异。 4. **日常操作**: - **更新**:`svn update`将远程仓库的最新变更同步到本地工作副本。 - **添加**:`svn add <文件或目录>`将新文件或...

    SVN_全部命令与中文详细解释

    - `--revision ARG` 或 `-r`:指定版本范围,ARG可以是单个版本号、日期、特殊标记如`HEAD`, `BASE`, `COMMITTED`, `PREV`。 - `--verbose` 或 `-v`:详细模式,显示更多额外信息。 - `--use-merge-history` 或 `...

    Svn分支在项目中的应用

    文章进一步介绍了Svn的基本概念,包括REVISION(修订版本号)、HEAD(版本库中的最新版本),以及BASE、COMMITEED、PREV等本地路径概念。其中,REVISION作为版本控制的核心,每个修订号对应一次提交的完整版本树,...

    SVN spec中文版

    - **修订符**:用来标识特定修订号的语法,例如“HEAD”表示仓库中的最新版本,“BASE”表示工作副本的当前版本。 - **修订关键字**:SVN支持某些特殊的关键字扩展,如$Revision$、$Date$等,这些关键字会在文件的...

    svn-book.pdf

    - SVN支持多种方式指定修订号,如`HEAD`表示最新的修订,`BASE`表示工作副本的基础修订等。 2. **属性(Properties)** - SVN允许用户为文件或目录设置自定义属性,这些属性可用于控制行为或存储元数据。 - 属性...

    TortoiseSVN客户端使用指南

    * 修订版本(Revision):SVN 中的一个版本号,用于标识文件的变化。 * BASE 版本(BASE Version):当前工作拷贝的基础版本。 * HEAD 版本(HEAD Version):最新的版本号。 * 提交(commit)代码:将本地文件更改...

    Subversion 1.7英文版

    修订规范用于指定特定版本、版本范围或标签,如使用修订号、修订的关键字(如HEAD, BASE, PREV)或日期来引用特定的修订。 #### 属性(Properties) 属性是绑定到文件或目录上的命名信息,可以用来存储有关文件的元...

    Version Control with Subversion For Subversion 1.7

    - **修订关键字**:使用像HEAD、BASE、COMMITTED这样的关键字来引用特定的修订版。 - **修订日期**:可以通过日期来引用在特定日期的修订版。 - **属性(Properties)**:为文件和目录设置属性,如作者、版本、...

Global site tag (gtag.js) - Google Analytics