Ensuring all git commits make it back to CVS when using git-cvs
- by Eric
I'm using git-cvs, and my general workflow is something like this:
...write some code...
$ git commit
$ git cvsexportcommit -c -p -v <asdf>
$ git cvs-import $CVSROOT
$ git pull
This generally works fine for pushing my commits back to the CVS server and keeping things in sync. However, I'm wondering how I will realize that something is…