How to Copy the directory and its contents from local file system to VOB (Source control)
I know there are commands (mkdir
, mkelem
) to crea
Yes: you can use clearfsimport, which is made precisely for that.
It will do the mkdir
, and cleartool mkelem
(or cleartool checkout
if you import new versions on top of existing versioned elements)
See also "How can I use ClearCase to “add to source control …” recursively?":
clearfsimport -preview -rec -nset c:\sourceDir\* m:\MyView\MyVob\MyDestinationDirectory
About the clearfsimport
options used here, see "Creating a new subdirectory structure in ClearCase?".