0

I want to know the repository URL of a CVS branch. I know "bzr info" can list it, but haven't found its CVS equivalent after searching for a while. Thanks for any hint.

Hailiang Zhang
  • 17,604
  • 23
  • 71
  • 117

2 Answers2

1

It's been a while since I've used CVS, but I think it was in the CVS/Repository file of your working directory. If not that specific file, one of the files in that directory.

dOxxx
  • 1,540
  • 1
  • 12
  • 28
1

The CVS/Root file shows the location of the CVS repository.

burhan@orion:/dev/shm/cvstest/test$ cat CVS/Root
:ext:burhan@cvs:/vol/cvsroot

The CVS/Repository files shows you the location of the current directory under the CVS repository.

burhan@orion:/dev/shm/cvstest/test$ cat CVS/Repository 
cvstest/test

I don't know exactly what information from bzr info you are after but a combination of the above should help.

Burhan Ali
  • 2,258
  • 1
  • 28
  • 38