Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can we use git-cvs on windows?

I'm comfortable using git, and I prefer it very much over CVS. Unfortunately, in our company, we have to use CVS as a version control system. I was wondering if there was anyway to use git locally while committing to the CVS repo, and I was elated when I found this SO question. Unfortunately, it does not seem to work on Windows. I have Git For Windows (mysysgit) installed on my computer, and when I type git cvs or git cvsimport in the terminal it says "not a git command". Is there anyway I can use this functionality on windows?

like image 913
vedang Avatar asked Feb 15 '10 10:02

vedang


1 Answers

Use Cygwin git instead of msysgit, it has this and other functions, like git daemon.

Or you can implement this feature and contribute it to msysgit.

like image 68
Mauricio Scheffer Avatar answered Sep 21 '22 04:09

Mauricio Scheffer