Cleartool command to copy the directory and its contents from local file system to VOB

后端 未结 1 474
暗喜
暗喜 2021-01-16 07:57

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

1条回答
  •  醉梦人生
    2021-01-16 08:24

    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?".

    0 讨论(0)
提交回复
热议问题