1

I have a directory name ABCD containing a set of files under Clearcase VOB within a directory TEST1 . I want to retain that structure of the existing directory tree as is.

 - TEST1

    * ABCD  

But I also have another directory under same VOB with the name EFGH within a directcory tree TEST2.

 - TEST2

    * EFGH 

I want to add the directory ABCD and it its contents under EFGH without disturbing TEST1 directory tree at all. Essentially I want to reuse ABCD directory tree under two directory TREE within same VOB,

- TEST2

    * EFGH  
       * ABCD 

I don't want to use cleartool ln command.

What is the way out? Thank you. Regards Pashan

S. M. Shahinul Islam
  • 2,780
  • 4
  • 36
  • 68
user3806728
  • 301
  • 1
  • 6

1 Answers1

0

No cleartool ln means you would have to duplicate ABCD in EFGH.

You can easily do that with a clearfsimport command (see "How can I use ClearCase to “add to source control …” recursively?")

 cd TEST2/EFGH
 clearfsimport -preview -rec -nset /path/to/ABCD .

(Remove the -preview when the output looks like the import you want to do).

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