1

It's a very basic question, which command shoud i use in linux to rebase my stream, my stream name is : abrodov_RavenApp1.5.5.0_Plat_Mig_1 , it's located in : //home/RND/abrodov/views.

Alex Brodov
  • 3,365
  • 18
  • 43
  • 66

1 Answers1

1

It should be cleartool rebase:

cd /path/to/myUCMview
cleartool rebase -bas yourBaseline@/vobs/yourPVob

Note: don't mix a view name and a stream name. Your view must be an UCM view associated to the stream.

You can check which stream is associated with your view with:

cd /path/to/myUCMview
cleartool lsstream -cview
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • how can i check what is my current baseline ? – Alex Brodov Aug 28 '14 at 11:29
  • Rebasing is about changing the baseline by one of your choice (coming from the parent stream). If you don't specify a baseline, it will take the ones of the parent which have been recommended. You can see the recommended baselines of a stream graphically (right-click on the stream, "recommended baselines"). Or with cleartool, as I explained it in your previous question: http://stackoverflow.com/a/25427175/6309 – VonC Aug 28 '14 at 11:33
  • so this is the command that i should type: rebase -bas abrodov_RavenApp1.5.5.0_Plat_Mig_1@/vobs/myPVob – Alex Brodov Aug 28 '14 at 11:35
  • Yes, if abrodov_RavenApp1.5.5.0_Plat_Mig_1@/vobs/myPVob is the name of a baseline. – VonC Aug 28 '14 at 11:36
  • If i'm using a dunamic view should i rebase ? – Alex Brodov Aug 31 '14 at 09:11
  • @user3502786 rebase is not linked to snapshot or dynamic view, but it is easier to rebase using a dynamic view (not load to perform) – VonC Aug 31 '14 at 09:12
  • I tried to rebase and i got this error: cleartool: Error: Can't rebase to baseline "GSRM_4.02_31-AUG-14_1715" of component "GSRM" because it was created in this stream. cleartool: Error: Unable to rebase stream "GSRM_4.02_Integ". – Alex Brodov Aug 31 '14 at 09:34
  • @user3502786 when you are not in an integration stream, you only rebase a baseline created in the parent stream. – VonC Aug 31 '14 at 09:47