OS and tools info: I am using most recent (2/11/2015) updates of Cygwin's mintty Unix bash on Windows 7.
I am working to convert a CVS repository to use Git and need to recover the files from a tarball. After extracting the files, I have tried using "cvs checkout" and that has gotten a few of the files, but a majority of the files are in Attic directories and were not checked out, even when I moved them all up one directory so they were not in Attic as was suggested in this gnu forum After this did not work, I tried cvs2svn which would not resolve. Finally I tried using regular RCS co, which created most of the files I needed.
However, all of the converted files from Attic sub-directories in one top-level directory were empty (0kb). Even when the ,v files were moved to higher levels, they did not extract properly.
Code (rcs co working as it should for the following)
$ pwd
/tmp/test/repo/<working-directories>/
$ find . -type f -wholename "*Attic/**,v" -exec rcs co {} \;
$ find . -type f -name "*,v" -exec rcs co {} \;
$ cd /tmp/test/repo/<trouble-directory>
$ find . -type f -name "*,v" ! -wholename "*Attic/**,v" -exec rcs co {} \;
However, rcs is not working as it should for the following command and creates files of 0kb size
$ pwd
/tmp/test/repo/<trouble-directory>
$ find . -type f -wholename "*Attic/**,v" -exec rcs co {} \;
Moving to the top-level did not work
$ pwd
/tmp/test/repo/<trouble-directory>
$ find . -type f -wholename "*Attic/**,v" -exec mv {} . \;
$ find . -maxdepth 1 -type f -name "*,v" -exec rcs co {} \;
Even moving to the working directories did not work
$ pwd
/tmp/test/repo/<trouble-directory>
$ find . -type f -wholename "*Attic/**,v" -exec mv {} ../<working-directory> \;
$ cd /tmp/test/repo/<working-directory>
$ find . -maxdepth 1 -type f -name "*,v" -exec rcs co {} \;
What could explain this behavior of rcs co? The other files are of similar size and extensions. I can't seem to find anything in the documentation of the repository to treat the Attic files in this particular directory any differently and I haven't been able to find a smoking gun in any configurations. Any ideas?