-rw-r--r-- | scripts/cvslastlog | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/scripts/cvslastlog b/scripts/cvslastlog new file mode 100644 index 0000000..7676a6a --- a/dev/null +++ b/scripts/cvslastlog | |||
@@ -0,0 +1,8 @@ | |||
1 | #!/bin/sh | ||
2 | # cvslastlog - prints log of last commit for a file | ||
3 | # Depends on the version of the local file, not the one on the server | ||
4 | # Requires cvsversion | ||
5 | # David Faure, faure@kde.org | ||
6 | |||
7 | cvs log -r`cvsversion $1` $1 | ||
8 | |||