19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
eskil -r rev1 -r rev2 file.txt
Compare the two revisions. This does not involve the local copy of file.txt.
For RCS and CVS version numbers to -r are rather straightforward since they
work just like for -r to them.
For ClearCase there are more possibilites.
ClearCase stream names are build like file paths and in -r you can access the
streams similar to how you find files.
Your current stream is the "current directory".
-r 5 : Version 5 in current stream.
-r . : Latest version in current stream.
-r /full/path/stream/4 : The identified version.
-r /full/path/stream : Latest version in that stream.
|
|
|
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
eskil -r rev1 -r rev2 file.txt
Compare the two revisions. This does not involve the local copy of file.txt.
For RCS and CVS version numbers to -r are rather straightforward since they
work just like for -r to them.
For ClearCase there are more possibilities.
ClearCase stream names are build like file paths and in -r you can access the
streams similar to how you find files.
Your current stream is the "current directory".
-r 5 : Version 5 in current stream.
-r . : Latest version in current stream.
-r /full/path/stream/4 : The identified version.
-r /full/path/stream : Latest version in that stream.
|