我正在使用cvs
作为项目。我使用cvs checkout ...
从存储库中查看项目的副本,然后使用cvs edit <file>
进行编辑。现在,考虑下面我的项目的示例目录结构:
project/:
dir1/:
sample1.C
dir2/:
sample2.C
现在假设我运行以下命令:
cd ~/cvs/project/dir1/
cvs edit sample1.C
cd ../dir2
cvs edit sample2.C
cvs editors
我的输出仅包含sample2.C
,而不提及sample1.C
。如果我cd
进入dir1
我只能看到sample1.C
被编辑。我的问题如下:
我的cvs
设置有问题吗?或者我应该从一个地方为我需要编辑的任何文件调用cvs edit
命令,以便在一个地方查看正在编辑的所有文件。
我是否可以使用cvs
中的命令查看正在项目中cvs
编辑的所有文件?
答案 0 :(得分:1)
cvs
命令适用于当前目录及以下目录。因此,在您的示例中,由于您位于dir2
,因此您只能看到sample2.C
。如果您回到proect
目录,则会看到两个文件。