diff options
author | Bruce Momjian | 2003-07-25 02:11:17 +0000 |
---|---|---|
committer | Bruce Momjian | 2003-07-25 02:11:17 +0000 |
commit | b2312c4eaed0764b1fad793bf3834ba0e33f8097 (patch) | |
tree | faad4a3bc5d35dc66092cd4aa65864f0648ee9b6 | |
parent | 8355901a0ed6741a6b21a35874cba0f3e80378e8 (diff) |
No need for Static.Entries, use -rHEAD.
-rwxr-xr-x | src/tools/pgcvslog | 16 |
1 files changed, 7 insertions, 9 deletions
diff --git a/src/tools/pgcvslog b/src/tools/pgcvslog index ba2bdd35df0..3acfef5efab 100755 --- a/src/tools/pgcvslog +++ b/src/tools/pgcvslog @@ -4,18 +4,16 @@ # Usage $0 file -# no branches: # cvs log -d '>1999-06-14 00:00:00 GMT' . > log +# all branches: +# cvs log -d '>1999-06-14 00:00:00 GMT' . > log # -# pre and post-branch logs: -# find . -name CVS -type d -exec touch '{}/Entries.Static' \; -# -# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT' . -# cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_1_STABLE`. +# one branch: # cvs log -d'>2000-05-29 00:00:00 GMT' -rHEAD . -# cvs log -d'>1999-06-14 00:00:00 GMT' . > log -# -# find . -name CVS -type d -exec rm '{}/Entries.Static' \; +# cvs log -d'>2000-05-29 00:00:00 GMT' -rREL7_3_STABLE` . # +# date range +# cvs log -d'2000-05-08 00:00:00 GMT<2000-05-29 00:00:00 GMT' -rHEAD . + if [ "X$1" == "X-h" ] then HTML="Y" |