开发者

ClearCase - find all the files that aren't updated

开发者 https://www.devze.com 2023-01-09 01:20 出处:网络
I\'m working 开发者_如何学Gowith ClearCase on Unix. I am working on a branch, and I want a command that will list all the files which I view on my branch, that have updated versions of them in the Mai

I'm working 开发者_如何学Gowith ClearCase on Unix. I am working on a branch, and I want a command that will list all the files which I view on my branch, that have updated versions of them in the Main branch. Is that possible?


You can use the findmerge command to list all the elements that have been modified in another branch.

ct findm . -fver /Main -print 


A more general command can be used to find all the files having a version on a given branch:

cleartool find . -type f -branch "brtype(my_branch)" -print
0

精彩评论

暂无评论...
验证码 换一张
取 消