Some useful clearcase commands: a .Create branches branch_name1 from /main/0, merge them from other branch branch_name2 clt find . -version 'version(.../main/0)' -print -exec 'cleartool mkbranch -nc -version /main/0 branch_name1 $clearcase_PN;cleartool merge -to $clearcase_PN -version /main/branch_name2/LATEST' b. check in all the checkedout elements clt lsco -cview -recurse -short .|xar...
by appleisred - Linux文档专区 - 2007-08-09 15:34:47 阅读(962) 回复(0)
昨天师傅帮我装好了gcc,用了一下 今天再用的时候输入gcc怎么说找不到啦 问师傅,师傅说你setview了吗? 我是菜鸟,请问setview怎么弄啊?详细一点好吗?拜托大家了
昨天师傅帮我装好了gcc,用了一下\r\n今天再用的时候输入gcc怎么说找不到啦\r\n问师傅,师傅说你setview了吗?\r\n我是菜鸟,请问setview怎么弄啊?详细一点好吗?拜托大家了
文档选项 未显示需要 JavaScript 的文档选项 打印本页 将此页作为电子邮件发送 级别: 初级 慧波 商 , 软件工程师, IBM 新丽 史 , 软件工程师, IBM 2005 年 12 月 30 日 CearCase Multitsite 产品的开发和实现增强了 clearcase 产品的功能。使用 Multisite 使分布在各个国家,或者不同地点的开发者能够对同一个 VOB, 或是同一个 VOB 里的 element 进行处理。通过本文了解 CearCase Multitsite 的基...
有clearcase 和ClearQuest技能和经验的你看过来 clearcase要求(有以下Perforce,Subversion,CVS经验者也可) Knowledge Required: Base clearcase Administrationclearcase MultiSite AdministrationUCM knowledgeScripting experience with UNIX shell and PerlGood understanding of the requirements for clearcase to work in an interop environment (UNIX and Windows mixed)clearcase/ClearQuest Integrations Tasks...
#!/bin/python import commands import os #modify the branch name, here e.g. 'abc', and put this script file under the vob from which you want create branch. branch_type="your_branch_type" print "cleartool mkbrtype -nc " + branch_type os.system("cleartool mkbrtype -nc " + branch_type) dirs = commands.getoutput("find .").split("\n") #notes: the dir reference the files name, and must be enclose wit...