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 ...
23
votes
4answers
11k views
Best practices for using git with CVS
What are your best practices and tips for using git to interface with a CVS repository?
9
votes
2answers
562 views
Reverting part of a commit with git
I want to revert a particular commit in git. Unfortunately, our organization still uses CVS as a standard, so when I commit back to CVS multiple git commits are rolled into one. In this case I would ...
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 ...
3
votes
1answer
368 views
Speedup and Caveats with Git cvsimport?
we're trying our hand at migrating from cvs to git.
Our goals are
1) perfect current codebase
2) usable history. If it's missing an entry in an old branch, we don't care so much.
Two comments:
...
3
votes
4answers
2k views
Why is git-cvsimport missing one major patchset?
This is a followup to a previous question of mine.
I can look through the output of cvsps (saved in my ~/.cvsps directory) and see a patchset for a major, complicated commit. But this commit does ...
2
votes
1answer
253 views
Ensuring all git commits make it back to CVS when using git-cvs
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 ...
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
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 ...
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 ...
2
votes
1answer
549 views
How do I debug git-cvsimport? (can't see complicated commit)
About 40 minutes ago I committed a particularly complicated change involving several file renames, mergers, and deletes from git into cvs, using git-cvsexportcommit. This went fine, and a checkout ...
1
vote
1answer
141 views
git-cvsserver pserver username propagation
For some specific workflow issues at my company, I need to allow some users work
with CVS, while main repository is under git.
I've chosen git-cvsserver as implementation for this task.
I set up ...
0
votes
1answer
345 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 ...