TortoiseSVN: What is head revision

前端 未结 7 1687
名媛妹妹
名媛妹妹 2021-02-01 00:56

I\'m a VSS user learning how to use SVN, and I have selected TortoiseSVN as my platform. Can someone tell me what the term \"HEAD Revision\" means?

7条回答
  •  臣服心动
    2021-02-01 01:46

    Since your question is Subversion-specific, here is what the SVN book says:

    HEAD

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

    For comparison, here are the other revision keywords:

    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.

提交回复
热议问题