clearcase

Clearcase plugin for eclipse usage

不羁的心 提交于 2019-11-27 09:10:27
I am new to clearcase and software development using version control system. I am using clearcase for version management currently. I use eclipse IDE for software development. I installed clearcase plugin for eclipse over the internet from sourceforge.net website. Some how the plugin does not work. The softwares that i installed are: IBM Rational Clearcase 7.0, Eclipse Galileo 3.5 and clearcase 2.2.3 plugin for it. I am not able to checkin or checkout files using the plugin. Can some one give me detailed/step-by-step procedure for using the plugins? What kind of environment to be setup? VonC

Problems with clear case plugin eclipse

流过昼夜 提交于 2019-11-27 08:59:37
I have a following problems with eclipse, when I installed ClearCase plugin from this url http://www3.software.ibm.com/ibmdl/pub/software/rationalsdp/clearcase/60/update/windows/ : Has anyone experienced the similar problem? I'm using Windows 7 and eclipse galileo. I've installed the plugin from this URL, what can I do to work this problem out? For those who can't see tinypic images +----------------------------------------------------------------------+ | Connect to the Rational ClearCase failed | | | | Connect to the Rational ClearCase failed | | | | Reason: | | Select Details >> for more

Python ClearCase Download Vobs Popen Password BASH Program Sketchy

北城以北 提交于 2019-11-27 07:33:40
问题 I coded this program yesterday and it was actually working except for when run by CRON. Today, I ran the same script and it does not work. The script will run without any Tracebacks Errors, and it will copy the top folder (vob) from the ClearCase view, but none of the actual important data in the folders and files below the target folder. Here is my Python script. def obtainCode(view="My_VIEW", folder="/my_folder"): """Download code from ClearCase's File System and put it on the hard-drive"""

Is clearcase path is a standard one — '@@' and string after that

蹲街弑〆低调 提交于 2019-11-27 07:28:32
问题 is the clearcase path syntax is universal one. my_source.c@@\main\10.1_bugfix\another_branch\0 is this path is standard one? I invoked the following in emacs and it is working. how does emacs diff understand this path. somehow clearcase informs operating system how to interpret that path. or emacs-diff know of this path syntax? $ diff my_source.c@@\main\10.1_bugfix\another_branch\0 my_source.c 回答1: This is an extended path . It is working with dynamic views, which give access to the branches

Get all versions from a specific time - ClearCase UCM

纵然是瞬间 提交于 2019-11-27 07:25:18
问题 We are using ClearCase UCM, and someone asked me if there is a way to get all of the versions from a specific time. Example: Work is being done on a development stream. Someone broke the build, but the previous baseline is too far back and we would lose too much work. They would like to get the versions of every file that was there from last Thursday at 11:00am. Is this possible, even if it hasn't been baselined at that specific time? Is there a way to revert back to that specific time? (I

How to use CCRC to get old file versions?

戏子无情 提交于 2019-11-27 07:20:09
问题 I'm trying to use CCRC API in order to get, for instance, all versions for a specific file and get some old file version. I've tried to use CHILD_LIST, CHILD_MAP, tried to use CcFile.getVersion().getPredecessor() and then use CcFile.doReadProperties(...) but it seems that the location is remote and then is not possible to get the file using for example getClientPath(). I already saw that is possible to retrieve all versions for a specific file using CCRC plugin and select a specific version

CLEARCASE_XPN not parsed as variable in clearcase command

寵の児 提交于 2019-11-27 07:18:13
问题 I meet a problem that when I run clearcase command: ct find . -branch 'brtype(my_branch)' -exec "echo %CLEARCASE_XPN%"` %CLEARCASE_XPN% not parsed as a variable and the output is: %CLEARCASE_XPN% %CLEARCASE_XPN% %CLEARCASE_XPN% ... But I'm sure CLEARCASE_XPN is the variable denotes the whole path of the found file. Can anybody help? OS is linux, shell is tcsh, thanks! 回答1: Use: ct find . -branch 'brtype(my_branch)' -exec 'echo $CLEARCASE_XPN' %CLEARCASE_XPN% is a windows syntax. $CLEARCASE

Version control with MVFS

廉价感情. 提交于 2019-11-27 07:16:23
问题 Is there any version control system available with an MVFS-like virtual file system in addition to the ClearCase? I can't find any. Thanks, Mart 回答1: No (in a read/write remote access). MVFS (MultiVersion Filesystem) is about encapsulating the native filesystem to combine: network access with version files through dynamic views To my knowledge, only ClearCase offers that (especially on that many platforms: Unix, Linux, Windows, Hp). Other VCS offer read-only remote access like Gitfs and svnfs

Migration from UCM ClearCase to GIT

倾然丶 夕夏残阳落幕 提交于 2019-11-27 07:12:10
问题 I am studying migrating from UCM ClearCase to GIT. The initial intention is to migrate all cc branches with their respective history. A similar experience, best practices, any tips or suggestions will be of great help. 回答1: The biggest advice is in the UCM component to Git repository reorganization. The migration is often a good opportunity to split (too) large UCM component into leaner Git repo. Since Git is distributed , you need to keep in mind you will be cloning the full history around,

Any way to use a custom diff tool with cleartool/clearcase?

六月ゝ 毕业季﹏ 提交于 2019-11-27 06:48:04
I'd like to use my own diff when working in a clearcase snapshot view. As far as I can see, there is no way to specify a diff tool when running " cleartool diff ", so I was thinking I could run something like " mydiff <predecessor file> <modified file in my view> ", but I don't know enough about ClearCase to be able to find the "predecessor file" to diff against. Any way to do this? Forgot to mention (until now, after reading the first two responses dealing with windows) that this is on Unix, and I am not allowed to muck with the ClearCase configuration. VonC How to change default diff tools