We have about 100 CVS repositories which we like to convert to git. We tried using git cvsimport
which works fine.
But we have some files with special characters in their filename. The special characters end up as non printable characters in the file name in the new git repository.
Both CVS clients and CVS server are running on windows. The windows clients are using the cp1252 character set for all files. git cvsimport
is invoked using cygwin, since it's not available for windows.
Any ideas to get proper filenames in git after running git cvsimport
?