Tagged Questions

50
votes
3answers
17k views

How to export revision history from mercurial or git to cvs?

I'm going to be working with other people on code from a project that uses cvs. We want to use a distributed vcs to make our work and when we finish or maybe every once in a while we want to commit ...
7
votes
2answers
337 views

How to guerilla VC with git while forced to use CVS at work?

My place of work currently uses CVS. A git migration is planned but it might be a long time coming. In the mean time I have a one-man project, and have decided to use git for my own personal ...
5
votes
3answers
2k views

How to mirror one one git remote to another with push

The problem is a simple one. I've used git cvsimport to import a cvs repo into a remote branch in a local git repository. I then wish to sync this repository: branches, tags, and all, to a git ...
2
votes
0answers
108 views

Getting commitid or 'git describe' with git-cvsserver and a CVS working copy

I have some automated tools that are accessing a git repository through cvs and git-cvsserver. I would like these tools to be able to see the commit ID of the content that they checked out. Is this ...
2
votes
2answers
1k views

How can I git-cvsimport multiple modules from a CVS repository, with differing branches?

I'm trying to git-cvsimport several different modules from CVS, all of which are on different branches. So far I've done this (in pseudo-bash code): for each ($MODULE, $BRANCH); do git-cvsimport ...
0
votes
1answer
347 views

Git cvsimport missing incremental changes to branch

We're using git-cvsimport to periodically copy changes from cvs into git For better or worse, we stuck with git cvsimport and not cvs2svn. Initially we planned a "once-and-for-all" cvs-to-git ...
0
votes
2answers
227 views

Can't add a file named “VERSION” to CVS at the same level of a dir named “version”

I'm reporting a series of commits from git to cvs with cvsexportcommit. I've found that it's impossible to add the VERSION file in the following context | \_version/ | | | \_version.txt (to be ...