Recursive checkin using Clearcase

前端 未结 3 1421
太阳男子
太阳男子 2020-11-30 09:14

I want to check in a directory and all the sub-directories into the clear case. Is there a specific command to achieve it? Currently I am going into each directory and manua

3条回答
  •  执笔经年
    2020-11-30 10:01

    If you are in windows you may try,

    for /f "usebackq" %i in (`cleartool lsco -cview -me -r -s`) do cleartool ci -nc %i
    

提交回复
热议问题