2

We're just moving from VSS to ClearCase and it's nearly impossible to find out how to do anything :-( I need to script (using ClearTool?) a sort of VSS-GetLatest, i.e copy a folder and all its contents to a windows folder

Any clues (in short words please as I'm new to this!)

Jon Seigel
  • 12,251
  • 8
  • 58
  • 92
FrinkTheBrave
  • 3,894
  • 10
  • 46
  • 55
  • By any chance, is your need to copy a folder and all of it's contents to a windows folder because you need to see / edit the files disconnected from clearcase? If so, I think this may be the wrong source code control tool for you. Has your team considered a tool that doesn't require a persistent connection to the repository (cvs,svn,git, etc.)? – DaveParillo Sep 10 '09 at 15:56
  • @DaveParillo: a snapshot view can allow the consultation of data without persistent connection, once the initial update is done, like any CVS or SVN workspace checkout. Git, on the other hand, is a DVCS, and has the full repository on the local workstation. Completelty different. – VonC Sep 10 '09 at 16:46
  • @Pete: do not hesitate to leave further question as comments on my answer: that way I will be notified of those comments, and will be able to address them. – VonC Sep 10 '09 at 16:47
  • Also see: http://www.ibm.com/developerworks/rational/library/09/sourcesafemigrationtorationalclearcase/index.html – edelwater Apr 15 '10 at 09:25

2 Answers2

1
  • If you have your data in a VOB, what you need to access the LATEST of the branch 'main', you need to define a view.
    I recommend a dynamic view to begin with, for a quick browse of the data.
    See this question for creating views.

  • if you still have to import data into your VOBS, clearfsimport is a good option.
    See here and here.

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
0

I would take the most important labels from VSS and import them inside ClearCase. You can use 'clearfsimport' utility, it's like a script.

Flexo
  • 87,323
  • 22
  • 191
  • 272
Tamir Gefen
  • 1,128
  • 2
  • 18
  • 35