Is there any CVS command that can give me previous revision of a file, given the filename and its revision?
|
|
|
You can use cvs history command. |
|||
|
|
|
The way CVS controls the version of a file is that the revision is increased only when there is a commit in that file. The changes in the tree or tagging etc will not affect the revision of a single file. Although there is no definite way of getting the previous revision of a file, given the name and it's revision... But there is a hit and trial method around it. Blindly go to the previous revision. For eg, the prev revision of Another way to sort this out is, to write a shell script. Use |
|||
|
|
There is no direct way to do this from CVS commands. But since I am using the output (of CVS log) IN java, following code snippet worked for me
Above code also handles branch revisions, for example, if the current revision (in picture) is the first one on branch that it will return the revision from which branch for that file was created. Hope this helps. |
|||
|
|
