Recovering files from archive of CVS *,v files

后端 未结 6 598
轻奢々
轻奢々 2020-12-31 17:56

I trying to recover some old source code (plain text) from a bunch of files that used to be managed with CVS. I have a directory containing all of the source code files in C

6条回答
  •  谎友^
    谎友^ (楼主)
    2020-12-31 18:22

    Yes, install a CVS client, set environment variable CVSROOT to point to the root of your repository, and type cvs checkout dir where dir is a top level directory in your repository.

    If for some reason you only have individual ,v files, they are in rcs format, so if the rcs program is installed it should be able to get the tip revision out of any ,v file.

提交回复
热议问题