clearcase

Are there problems with using a Dynamic View in RAD 7.5?

丶灬走出姿态 提交于 2019-12-06 20:31:32
Our team recently switched from using WSED 5.2 to using RAD 7.5 for our code development (we're a little behind the curve in development software). This, as well as a move to a WAS 7 server, is a mandatory move for us to complete, so moving to a different developer or server is not an option. Since moving to this new developer, I've been having problems making changes to the app and testing them on my local server. Refreshing the server doesn't help, nor does a Clean or a Publish to the server. Even clearing and rebuilding the projects doesn't seem to do the trick. The only thing that does

How to perform a 'merge' using clearcase?

☆樱花仙子☆ 提交于 2019-12-06 20:16:34
I have been working on branch X and I need to move my code to branch Y. All my code are new classes that I started, so no one else has been working/modified my code, this also does not exist in the branch that I'm moving the code to. So my question is, what is the process to move the code from one branch to another? i have never done it before. Do i copy and paste the classes into the new branch or is there a tool that is usually used for this ? VonC The key of a ClearCase merge is to do the merge in the destination view (the view associated with the branch or the UCM stream to which you merge

Where do new elements appear when mkelem is used?

为君一笑 提交于 2019-12-06 20:06:20
My config spec is set up as: element * CHECKEDOUT element * .../BRANCH/LATEST element * baseline -mkbranch(BRANCH) element * /main/LATEST When I make a new element I know it goes along with the rule /main/LATEST. When I do a cleartool ls I can find the new element, but how can I find the new element with a cleartool find command. Also this is assuming the new element has been checked in and all existing elements that where checked out under the branch have been checked in. The new element does not yet have any labels. I've been trying: cleartool find -avobs -branch 'brtype(BRANCH)' -version

same clearcase vob in two windows servers

∥☆過路亽.° 提交于 2019-12-06 18:57:30
is it possible to have a copy of the vob in a different machine for testing purpose ? I know I can move the vob to another server using moving a vob But , doing this makes the vob unavailable at the original location. So, a live vob cannot be used this way as people would be accessing it from old location. is it possible to have a copy of the vob in a different machine for testing purpose ? Yes, the " moving vob " procedure would still apply. You only need to register it to a different registry server, and preferably with a different tag. That means: no need for a -replace option: cleartool

how to list only the name of the baselines and name of the stream from particular component in UCM ClearCase

末鹿安然 提交于 2019-12-06 17:34:30
Is there any way that I can list all baselines' name and stream name for those baselines from a particular component? The basic command would be cleartool lsbl : cleartool lsbl -comp aComponent@\aPVob You can then use fmt_ccase to display the stream as well as the baseline. cleartool lsbl -fmt "%n %[bl_stream]Xp\n" -comp aComponent@\aPVob A similar command would be: cleartool lsbl -tree -comp aComponent@\aPVob (to see the stream, and its location within the UCM project). If that doesn't work, you can, for each baseline returned by the first command, do a: cleartool descr -fmt "%n %[bl_stream

Clearcase UCM Configuration with Jenkins to get latest baseline Integration code

偶尔善良 提交于 2019-12-06 17:29:24
Can someone please help me why am I getting this error? I am running Jenkins from one of my VDI machine and connected to Clearcase windows server. I am able to get the latest baselines so basically it is getting connected to clearcase server but I am not sure why it is changing the stream name while running the command. Console Output: Building in workspace C:\Jenkins\workspace\Test Forms [CCUCM] ClearCase UCM Plugin version 1.7.0 [CCUCM] Allow for slave polling: false [CCUCM] Poll for posted deliveries: false [CCUCM] Trim changeset: false [CCUCM] Polling streams: self [CCUCM] Getting

ClearCase can I use clearexport_ccase/clearimport to copy VOB data to a VOB on a different machine

别说谁变了你拦得住时间么 提交于 2019-12-06 16:39:54
ClearCase can I use clearexport_ccase/clearimport to copy VOB data to a VOB on a different machine at a different location? copy VOB data to a VOB on a different machine at a different location? That kind of process means a reformatvob -dump / reformatvob -load : cleartool reformatvob -dump /vobstore/avob.vbs The process is described in " Moving VOBs and relocating VOB data ". It uses the command refomatvob . clearfsimport wouldn't import all the metadata (stream, labels, projects, ...): only files and directories. 来源: https://stackoverflow.com/questions/18878690/clearcase-can-i-use

Graphic tool to display element tree branch in git for linux

你说的曾经没有我的故事 提交于 2019-12-06 16:35:15
问题 Having used clearcase lsvtree for many years I miss that functionality in git. Anybody know about a similar tool for linux? gitk is not as friendly for big trees and Tortoisegit looks cool but does not support linux. thank you 回答1: There is a project (that I haven't tested recently) to transform a gitk log into a version tree: crc8/GitVersionTree To go from: to: This is the closest I have seen from a ClearCase version tree. 来源: https://stackoverflow.com/questions/26680543/graphic-tool-to

How to annotate a folder in cleartool

馋奶兔 提交于 2019-12-06 16:34:09
I am trying to annotate a folder with command cleartool annotate folderName getting error cleartool: Error: Unable to create file "test_tut_element_vob.ann": Permission denied. I am able to annotate the files. VonC The cleartool annotate man page mentions the following caveat: The annotate command extracts information from the element's versions. To do so, it invokes the annotate method of the element's type manager. Only the text_file_delta and z_text_file_delta type managers (which correspond to the predefined element types text_file and compressed_text_file ) include an annotate method. You

How ClearCase identify hijacked files?

亡梦爱人 提交于 2019-12-06 16:34:02
One says an hijacked file is a file where the "Read Only" flag has been removed. I tried to remove the "Read Only" flag (Windows) and ClearCase does not recognize it as hijacked. Then I tried to touch the file using Cygwin without actually changing any mode flags. This time ClearCase warns me, we've got hijacked! It seems ClearCase only look at the timestamp of files not their content and not their read-only flags. This mechanism has a very bad side effects when working in parallel with git. For example, if I do this: git checkout bar git checkout master It would be the same as: touch foo Thus