Possible Duplicates:
How to export revision history from mercurial or git to cvs?
Best practices for using git with CVS
I have to make a number of changes to a CVS project. These changes cannot be checked in for some time and it's infeasible to create a branch either.
It occurs to me that I could track changes by creating a git project over the top of my CVS snapshot. I can commit my changes to git as I go along and at the end, trivially produce a patch from which I can make a checkin or handoff to someone else.
Is this feasible to do? The biggest issue for me is that I want git to ignore the CVS/ folders and also the bin/ folders where binaries are created. Is this possible to do in some simple fashion.
git cvsimport, when you still need to interact with CVS. You can even usegit cvsexportcommitto commit to CVS. Thanks for bringing it up. – spacemanaki Jun 3 '11 at 15:25