Cybersecurity
DevOps Cloud (ADM)
IT Operations Cloud
"PROBLEM/ABSTRACT:
Is there a way to graphically diff a directory structure on a cd with a stream?
SOLUTION:
For diff'ing an entire tree do the following (you can use something like Beyond Compare for this). Insert the CD with one version of the source tree assume the path is D:\srctree
Run the following:
mkdir <path for source files>
cd <path for source files>
accurev pop -R -v <stream> -L . \.\ (windows)
accurev pop -R -v <stream> -L . /./ (unix)
You can then run Beyond Compare against: D:\srctree and <path for source files>
For more information contact AccuRev Support"