Reputation: 770
I am trying to get a CLI command for "revert to basis" of all the overlapping dll's in my workspace.
Which command should I use for this - purge
or revert
?
I want to do this action only for overlapped dll files in my workspace. What is the best approach?
Upvotes: 1
Views: 1688
Reputation: 2097
Purge
Get a list of all the overlap files. Run the command "accurev stat -o -ffl > list.txt"
Then run the command "accurev purge -l list.txt"
Upvotes: 2