clearcase

How to move ClearCase view to a new domain?

牧云@^-^@ 提交于 2019-12-05 19:29:07
We are in situation where we successfully moved the VOBs from A domain to B domain (ClearCase server is running on Windows and we use one ClearCase server only). Now we try to change the views permission in order to prevent creating new views, but it seems that they're still on the same domain. I tried fix_prot -force -replace ...vws fix_prot -root -rec -chown -chgrp ...vws It works good with no errors, but when I try after to see properties, it's still on \username Can you advice? We use snapshot views only Thank you For snapshot or dynamic views, the fix_prot utility is used like this: fix

Value of using Git with ClearCase, AccuRev or Perforce? [closed]

旧巷老猫 提交于 2019-12-05 17:00:59
问题 As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, visit the help center for guidance. Closed 6 years ago . I am interested in the value (or lack thereof) of using a traditional SCM product (ClearCase, AccuRev, Perforce, etc.) along with Git

cleartool: how to write the result from command find to a text file

落爺英雄遲暮 提交于 2019-12-05 14:44:16
I am trying to find all the files under gt.BridgeGov branch in my view find \gtGov -all -version "brtype(gt.BridgeGov)" -print This statement works fine and list all the files under branch gt.BridgeGov. I am getting the list on console, but I want to redirect result to text file. I tried the following find \gtGov -all -version "brtype(gt.BridgeGov)" > myFile.txt find \gtGov -all -version "brtype(gt.BridgeGov)" >> myFile.txt Its throwing me an error cleartool: Error: Extra arguments: ">" How can redirect the result to a text file? -Update: find \gtGov -all -version "brtype(gt.BridgeGov)" -print

ClearCase to SVN migration

允我心安 提交于 2019-12-05 13:40:11
Well I have an issue with SVN importer tool for migrating one of the ClearCase VOB which has a huge history ..we thought of doing this by picking up like 10 -15 baseline versions of the code and import it to SVN. So for doing that I think the user has to give me the specific versions one by one . So now he is asking me how to point a specific version in clearcase and export it ?? .The idea here is to give me the code as tar ball ...so that I can explode it on my desktop and import it then to SVN. ....!!!! I Don know how to import / layer in all this baselines in SVN.......Is that something

How to list all my check-ins using ClearCase?

走远了吗. 提交于 2019-12-05 13:22:00
问题 Is it possible to get a list of all the check-ins I've made within a given source code directory tree using cleartool? If possible I'd like to see when the check-in was made and the file version. I'm using Windows. Thanks in advance. 回答1: This would involved a cleartool find command with: an -exec directive to describe the versions found a -fmt to better format the result a -created_by query language operator to restrict the results to only your checkins versions. You can either display all

ClearCase in Visual Studio 2015

限于喜欢 提交于 2019-12-05 12:33:55
Is there any workaround to get Rational ClearCase running in VS2015 RC? It looks like no plugin is available yet. Can I somehow use the plugin from VS2013? The solution proposed by user5337760 worked perfectly for me. In ccvsisearchtoolwin_VS2013.reg and reg_VS2013.bat, globally change all the 12.0 instances to 14.0. (I don't use the Remote Client, so these 2 files are the only ones I needed.) Check the environment variables in reg_VS2013.bat to be sure they match your setup. Run reg_VS2013.bat. According to http://www.almtoolbox.com/blog/installing-microsoft-visual-studio-2015-integration

Continuous Integration with Teamcity and Clearcase

…衆ロ難τιáo~ 提交于 2019-12-05 10:19:57
Has anybody successfully integrated Clearcase with Teamcity (which advertises Clearcase support) to realize a productive continuous integration build environment on a decent size project? VonC Yes we have, but with a custom ClearCase plugin for TeamCity , in order to:: use a dynamic view set with a "time" directive , and to avoid hundreds of " descr -l " for each changed files (which would be Sparta, err, no, madness, would be madness since it would represents hundreds of transaction to the ClearCase server) Check out the TCCC plugin on GitHub. 来源: https://stackoverflow.com/questions/1688061

Moving from ClearCase to Mercurial: your top tips?

僤鯓⒐⒋嵵緔 提交于 2019-12-05 10:12:42
We will soon start replacing ClearCase with Mercurial. I hear this is a good thing . The change model vs. the version model. Wave of the future. I'm prepared to believe this. Still, it kind of frightens me. Hey, it took Joel Spolsky a while to grok the difference and how to get maximum advantage out of Mercurial, so I'm betting I will run into conceptual traps and pitfalls. Does anyone have any real-world "how to grok Mercurial" tips? Anything specific suggestions that will help me bridge the conceptual gap. Any warnings about things not to do? I'd appreciate hearing them. I've already read

ClearCase: Find files having exactly one specific label and not more

拈花ヽ惹草 提交于 2019-12-05 09:30:44
I'd like to find files in ClearCase that are labeled with a specific label but that do not have any other labels set . For example, if I have files labeled like this: file1 LBL_A, LBL_B file2 LBL_A I'd like to have a query that gives me just file2 and not file1. Is there a way to do this with cleartool find? If this is not possible to do with a single query, I'd also be happy for any ideas how to do this in several steps (I'll be calling cleartool from a perl script, so it will be easy to save lists of files temporarily and run further commands on them). Thanks a lot in advance! Jan Assuming

how to remove a version in clearcase

时光毁灭记忆、已成空白 提交于 2019-12-05 08:13:28
I want to check out a directory , let's say /vobs/myvob/src/ to add a new file in this directory. But by mistake rather than checked out /vobs/myvob/src I checked out /vobs/myvob/scr/ and even worse checked in it. Then directory scr has a new version : scr@mybranch/1 (let's say I'm working on branch mybranch ) After realized that I've made a mistake, I remove the newly created version by: ct rmver scr@myranch/1 then use ct ls parent_dir_of_scr to do the double check and I found although scr@mybranch/1 disappeared, scr@mybranch/0 is still there . Not 100% sure but I'm afraid I should not try to