Tagged Questions
0
votes
1answer
38 views
revision errors in feauture branches while converting from cvs to mercurial
We are converting the cvs repository which has two branches (one is the MAIN and the other is the FEATURE,rest all can be ignored) into a mercurial repository.
We are using the inbuilt tool convert ...
0
votes
1answer
95 views
Is cvs2hg still potentially producing corrupted repositories?
Trying to migrate a repository from cvs to hg, I found the tool cvs2hg, and it seems to do nicely he job (conversion goes fine, and I have all the tags and branches).
However, the hg documentation ...
4
votes
5answers
171 views
Large 66GiB legacy CVS repo — it is a good idea to migrate to GIT or Mercurial?
We have a very large legacy CVS repo (66GiB) over a decade and increasing. Now we have some sub-contract companies, which need to work on some modules and branches.
We need to create some branches ...
1
vote
1answer
67 views
Why does migration from CVS to Mercurial fail on one machine but not another?
I'm using the following commands to convert a CVS repository to Mercurial:
cvs -d :pserver:<user>@<cvsroot> mymodule
hg convert mymodule
On an Ubuntu 12.04 machine this works, and ...
0
votes
2answers
41 views
How to version control a subdirectory of a Mercurial repo simultaneously in a CVS?
How to version control a subdirectory of a Mercurial repo simultaneously in a CVS repo as a subdirectory?
The reason I need this is that a private project version controlled with Mercurial has a ...
-5
votes
2answers
152 views
Free source control tool to replace CVS - separate repository /working folders are required [closed]
I've worked with CVS for many years and would be glad to move on to more advanced tools.
Are there any source control tools that allow to keep the working directory and repository in separate ...
-1
votes
1answer
68 views
what to save in git (or any other revision control system)?
I'll take Drupal as the exmple for my first question. We have a drupal instance with a custom theme and many downloaded modules. We have a server used as the source code repo.
The current workflow of ...
1
vote
0answers
42 views
How to version control a directory in a Mercurial repository using CVS?
I have a Mercurial repository hg-repo which has a directory cvs-dir that I want to simultaneously version control in CVS, and commit to a CVS repository:
$ ls hg-repo
cvs-dir other
The rest of the ...
2
votes
1answer
116 views
Do any hardware (ASIC) companies use mercurial (hg)
Do you know of any large companies (preferably hardware) successfully using mercurial as their version control system (vcs.)
I have experience with svn/cvs/perforce and a little git.
Internal ...
1
vote
1answer
157 views
Script to adjust history in an RCS/CVS ,v file
In preparation for a migration to Mercurial, I would like to make some systematic changes to many thousands of ,v files. (I'll be editing copies of the originals, I hasten to add.)
Examples of the ...
6
votes
5answers
258 views
multiple source code repositories
I use Mercurial for version controlling my source code. But some people prefer other version control systems (like git, Bazaar, SVN, CVS).
I would like to know, is it possible to store a repository ...
1
vote
1answer
67 views
Default path to clone from, like CVSROOT?
A friend asked if it is possible to set the default place where users checkout Mercurial modules from? CVS has a the environment variable CVSROOT, which is used by default.
1
vote
2answers
95 views
New repo or new folder in repo?
So when it comes to re-writing a whole system do you prefer to make a new repo for the re-write or just a new folder in the existing repo?
The reason I ask is the new folder method requires some for ...
1
vote
1answer
80 views
Write commit history into files in Mercurial
In CVS you can add a $Log$ in a file that you commit and it will save CVS commit comments into the file upon each commit. Is there anything similar for Mercurial?
1
vote
1answer
163 views
CVS virtual modules & directory mapping to mercurial repositories
My question is similar to this one but for Mercurial (converting using cvs2hg). However there some differences. This is part of our CVSROOT/modules file and shows the problem nicely:
PD1 -a ...
1
vote
3answers
71 views
Working with repos
When working with repos (I have github in mind), should we also commit third party libraries? For example, boost and poco compile to 5G with samples. Should we upload all that to github? If not, then ...
1
vote
2answers
151 views
Mercurial Workflow advice
I'm after a bit of advice for using Mercurial.
We currently use CVS on a central server, and maintain a head branch and a couple of past version branches. Our workflow is that all fixes/new features ...
4
votes
3answers
168 views
Mercurial equivalent of “cvs -nq update”
For those unfamiliar with CVS, cvs -nq update shows something like this.
$ cvs -nq update
M file_changed_locally.c
U file_changed_remotely.c
C file_with_conflicts.c
? untracked_file.c
I know I can ...
2
votes
1answer
154 views
Checking out a subset of a mercurial repository
First, I have a very large cvs repository and I'm trying to switch things over to mercurial. The cvs repository consists of several directories, sort of like the situation in this question. However, ...
1
vote
2answers
341 views
On converting from cvs to mercurial
I've got a gigantic CVS repository that I'd like to convert to a few hg repos. This question is similar, but I'm using hg convert and I've got more than one directory in cvs that should go in a given ...
2
votes
1answer
141 views
Is it possible to change the username on a mercurial changeset based on the commit message?
I am converting a CVS repository (actually a number of them) into a Mercurial setup, and was wondering if any one had experience with updating and correcting usernames in the changesets.
The issue is ...
20
votes
1answer
16k views
GitHub vs. BitBucket? [closed]
I want to use a SCM, but I don't know which is better. What is better to manage my code?
7
votes
1answer
1k views
Android and version control systems, commit gen folder or put on ignore list?
there has already been some discussion about the problems the gen folder causes together with version control systems (SVN, CVS, Git etc). But what is still unclear for me is, should it be commited or ...
1
vote
1answer
85 views
How should I work on a CVS hosted project to both (1) fix bugs and (2) maintain my own private fork with additional features
The question
An open source program uses CVS for version control. I would like to make a number of bug-fixes and submit patch bombs to the developers with commit access. I would also like to ...
1
vote
3answers
343 views
Using mercurial to merge a cvs branch
Currently my company is using cvs for version control. We have an old branch of code which has been used specifically for one client (don't ask) that we'd like to merge to the head.
Due to the ...
7
votes
8answers
456 views
SCM choice for a new user? [closed]
Real easy one here guys. Best justification gets the win.
I'm a computer science student at a school you've heard of, and have been programming for several years now (about 8), so I've written a fair ...
1
vote
2answers
481 views
HG Convert not working on local CVS repository
I have been trying to use HG convert to migrate a local CVS repository to HG. When I run the command...
hg convert CATools
I see the following message:
"Valid-requests", but got '')
...
8
votes
2answers
2k views
Convert cvs to mercurial
I'm trying to convert a CVS repository to mercurial but can't get it to work.
I start with a clean checkout:
cvs -d :sspi;username=xxx;hostname=yyy.local:/cvsrepos checkout repo
Which works fine
...
1
vote
2answers
815 views
Doing a 'diff/st' and ignoring the first line if it matches a specific criterion
In a repository for a well known open source project, all files contain a version string with a timestamp as their first line:
<?php // $Id: index.php,v 1.201.2.10 2009-04-25 21:18:24 stronk7 Exp ...
2
votes
2answers
810 views
Migrate from CVS to Mercurial: Separating projects
We have a CVS repository with years of development history and 3 projects under one project (CVS folder). Those should be different repositories in a Mercurial repo. They are in the following scheme:
...
2
votes
1answer
210 views
CVS to Mercurial conversion with CRLF
I have converted a CVS repository to Mercurial, but the carriage returns are converted from CRLF (Windows style) to LF (Unix style). However, I want CRLFs in the repository! I realise that you can ...
3
votes
5answers
317 views
Which SCM can comfortably handle 90,000 files
I have a folder which contains a whitelabel-esque system; theres way over 90,000 files in there.
Currently its stored in SVN and we just checkout the sub-folders as required.
Would mercurial or ...
7
votes
3answers
2k views
Ignore files in Mercurial using Glob syntax
I'm using Mercurial and I have a following structure:
files
test
demo.jpg
video.flv
video.doc
sport
demo2.jpg
picture.jpg
text.txt
demo3.jpg
...
1
vote
3answers
659 views
Mercurial Acl Extension deny pull of some files
I'm new mercurial user. I setup the acl extension adding this into my hgrc file:
[hooks]
pretxnchangegroup.acl = python:hgext.acl.hook
[acl]
sources = serve pull push
[acl.deny]
** = mercurial
So ...
0
votes
1answer
168 views
Problem with Mercurial and third-party hg-login script
I'm trying to setup mercurial using the HgLogin I have the following problem system. I done everything that is needed but when I tried to login to my repository I receive this answer:
remote: ...
1
vote
3answers
175 views
Mercurial: two separate repos somewhat related (yes I'm getting confused)
I have a local repository, let's call it ONE. ONE is the actual program. It's an android program, in case it matters for some reason.
I have a remote repository, let's call it EXT. EXT is somewhat a ...
3
votes
7answers
516 views
How do I use Mercurial?
I'm assuming Mercurial is for having an updated website and it archiving the old stuff? Easy to test things and such?
My question is, how exactly should I get started and can somebody give me a crash ...
4
votes
3answers
897 views
CVS to Mercurial conversion: end of line problem
I recently converted a CVS repository to Mercurial. From the looks of it, everything went perfect. Except that every end-of-line character is in Unix style and I want them in Windows style.
I know ...
1
vote
1answer
934 views
Converting from CVS to SVN to Hg, does 'hg convert' require pointing to an SVN checkout or just a repo?
As part of migrating full CVS history to Hg, I've used cvs2svn to create an SVN repo in a local directory. It's first level directory structure is:
2010-04-21 09:39 AM <DIR> .
...
7
votes
1answer
1k views
Mercurial hg, am I doing it right?
We are in the process of converting from CVS to Mercurial hg.
Our infrastructure is Windows 2003/IIS6
Each developer develop on their machine
1xDevelopement server
1xStaging server
Production ...
2
votes
1answer
521 views
Migrating from CVS to Mercurial - how to handle cross-repo symbolic links?
I have a project that is stored in CVS as numerous modules/repositories.
In several of the modules the CVS tree has symbolic links to the files in another tree. For example, the internal support ...
2
votes
4answers
872 views
cvs to mercurial conversion gets tags wrong
I've tried all the recommended conversion techniques
Mostly they manage to get the latest version of the files right, but every one of them trashes my history. Many (most?) of the tags from my cvs ...
11
votes
8answers
1k views
Scalable (half-million files) version control system
We use SVN for our source-code revision control and are experimenting using it for non-source-code files.
We are working with a large set (300-500k) of short (1-4kB) text files that will be updated ...
2
votes
1answer
396 views
hg convert from cvs broke branches
I converted an old cvs repository into mercurial via "hg convert". Everything seemed to be okay (at least with the default branch) but all feature branches are missing files which haven't been changed ...
4
votes
2answers
536 views
DVCS how structure with large integrated code base, with multiple projects sharing much common code?
I have a cvs repository, with mostly java code. Each package sits in it's own top level dir, like so, with the sourced laid out in typical java fashion.
...
3
votes
3answers
908 views
Is it possible to turn off keyword substitution for 'svn export'?
I would like to use svn export to export a bunch of files out of a Subversion repository. And I also wish to forgo keyword expansion on any of the keywords found in these files regardless of the ...
2
votes
3answers
1k views
Mercurial: Problem converting Windows cvs repository to mercurial
I’m trying to convert an existing Windows CVS repository to Mercurial and getting the following response and error:
C:\Windows\system32>hg convert c:\users\jeff\webs\shelter-cvs\shelter
assuming ...
4
votes
5answers
5k views
Diffing between two entire directories/projects?
I inherited a project originally stored in CVS with all the revisions. I made quite a few edits, and I'm trying to compare all the changes I made in the original directory, in regards to new files ...
2
votes
4answers
742 views
Tips on upgrading CVS to git/hg?
We still use CVS, I use git and hg for my personal use though I'm still a novice at both, but I realize they're much more modern and better, faster, distributed, etc.
It's just everyone is so ...
6
votes
8answers
1k views
What version control system is best designed to *prevent* concurrent editing?
We've been using CVS (with TortoiseCVS interface) for years for both source control and wide-ranging document control (including binaries such as Word, Excel, Framemaker, test data, simulation ...