
844
|
Chapter 14: The Subversion Version Control System
This is the Title of the Book, eMatter Edition
Copyright © 2006 O’Reilly & Associates, Inc. All rights reserved.
Subversion defines the list of keywords available for substitution. That list
contains the following five keywords, some of which have shorter aliases that you
can also use:
$LastChangedDate$
This keyword describes the last time the file was changed in the repository
and looks like $LastChangedDate: 2002-07-22 21:42:37 -0700 (Mon, 22 Jul
2002) $. It may be abbreviated as Date.
$LastChangedRevision$
This keyword describes the last revision in which this file changed in the
repository and looks like $LastChangedRevision: 144 $. It may be abbrevi-
ated as Revision or Rev.
$LastChangedBy$
This keyword describes the last user to change this file in the repository, and
looks like $LastChangedBy: harry $. It may be abbreviated as Author.
$HeadURL$
This keyword describes the full URL to the latest version of the file in the
repository. It looks like $HeadURL: http://svn.collab.net/repos/trunk/
README $. It may be abbreviated as URL.
$Id$
This keyword is a compressed combination of the other keywords. Its substi-
tution looks like $Id: calc.c 148 2005/07/28 20:34:45 sally Exp sally $, and
is interpreted to mean that the file calc.c was last changed in revision 148 on
the evening of July 28, 2005 by the user sally.
Obtaining Subversion
The Subversion ...