File indexing completed on 2024-04-14 05:35:09

0001 #!/bin/sh
0002 # cvslastlog - prints log of last commit for a file
0003 # Depends on the version of the local file, not the one on the server
0004 # Requires cvsversion
0005 # David Faure, faure@kde.org
0006 
0007 cvs log -N -r`cvsversion "$1"` "$1"
0008