Java Reference
In-Depth Information
Example 8.2 An example of running the cvs log command
$ cvs log Account.java
RCS file: /usr/local/srcbank/JavaAppDevLinux/Account.java,v
Working file: Account.java
head: 1.4
branch:
locks: strict
access list:
symbolic names:
keyword substitution: kv
total revisions: 4; selected revisions: 4
description:
----------------------------
revision 1.4
date: 2003/05/20 11:59:59; author: albing; state: Exp; lines: +80 -5
more comments added
----------------------------
revision 1.3
date: 2003/05/18 15:03:23; author: albing; state: Exp; lines: +3 -2
end case fixed
----------------------------
revision 1.2
date: 2003/05/17 11:05:40; author: albing; state: Exp; lines: +69 -2
actually runs - unit tested
----------------------------
revision 1.1
date: 2003/05/17 10:15:18; author: albing; state: Exp;
a rough structure
=======================================================================
• The comment that was entered when the user committed the change.
(For a description of state, and why you will almost always see Exp; , see the
Cederqvist reference in Section 8.6.)
Do you want less output from cvs log ? You can restrict the information
to cover only a certain user's changes ( -w ), to a certain range of revisions ( -r ),
and/or between certain dates ( -d ).
For example,
cvs -walbing -r1.2:1.4 -d05-Sep03 -d28-Sep-03 Account.java
will list only changes committed by user albing , only in the revision range of
1.2 through 1.4, and only between the dates of 05 and 28 September of 2003.
Search WWH ::




Custom Search