How do I identify what branches exist in CVS?

前端 未结 6 704
一个人的身影
一个人的身影 2021-02-04 00:12

I have a legacy CVS repository which shall be migrated to Perforce.

For each module, I need to identify what branches exist in that module.

I just want a list of

6条回答
  •  滥情空心
    2021-02-04 00:57

    This will bring up tags too, but tags and branches are basically the same in CVS.

    $cvs.exe rlog -h -l -b module1
    

提交回复
热议问题