Questions tagged [dvcs]

DVCS stands for Distributed Version Control System. Use this tag for questions about DVCSes in general. If your question is about git, or another DVCS that has its own tag already, then use that tag instead of this one.

Distributed revision control system (DRCS), distributed version control or decentralized version control system (DVCS) keeps track of software revisions and allows many developers to work on a given project without necessarily being connected to a common network.

Most popular DVCS:

911 questions
0
votes
1 answer

Bzr no working tree actual sources storage

A question I could not answer from the bazaar documentation. If I have a shared repository with branches having no working trees. So the branches folders only have a .bzr/ folder, not a single source code file or whatsoever I might be version…
CoolStraw
  • 5,282
  • 8
  • 42
  • 64
0
votes
1 answer

How do I configure tortoisehg to show copied files in the log (i.e. use the hg "-C" option)?

I want to easily tell which files where renamed when looking at the changelog using the tortoisehg UI. The out-of-the-box config only shows that a file was added/removed (i.e. the standard hg log message without the -C option).
fakeleft
  • 2,830
  • 2
  • 30
  • 32
0
votes
1 answer

TortoiseHg - seems to be very slow on Win7

I have recently setup a Mercurial clone with TortoiseHg on our network - it seems to take forever to add files, do commits etc.. It usually hangs for 3-5 minutes at a time & for seem reason it really doesn't like any kind of right-clicking in…
Zabs
  • 13,852
  • 45
  • 173
  • 297
0
votes
1 answer

Composite Baseline Concept applied to DVCS Mercurial/Git

I come from the IBM Rational ClearCase world (UCM and all that..) and as I remember the concept on Composite Baselines i wonder if there is something out there that has the same purpose for DVCS. I understand that Mercurial/Git are "Get All the…
Maverick
  • 1,293
  • 1
  • 19
  • 39
0
votes
2 answers

How can I put a WebDAV filesystem in my DVCS when I can't write to the root?

I have WebDAV access to a filesystem where I can't write to the root of the filesystem, but can write to 2 folders beneath it. I'd like to: track my changes in a single DVCS repo (git/hg preferred) work directly on the WebDAV connection rather than…
Pete
  • 2,503
  • 4
  • 21
  • 20
0
votes
1 answer

Hg sub repos dependancies

I’m currently migrating from CVSNT to Mercurial but am running into problems with what I used to be able to achieve with CVS modules. I have two projects say A and B which both depend on common code in a directory C. If I make a change to code in…
0
votes
5 answers

CVS alternative

as the title says, I'm looking for an alternative to CVS. Basically, I'm unable to setup an a constantly on CVS server, and so far, the current setup my team uses is a shared directory. With that in mind, I'm looking for something that has the…
Hatdog
  • 296
  • 2
  • 8
0
votes
1 answer

Applying specific commit(s) from one git repository on another

We are developing automation code that runs against multiple different versions of our company's products. Per product version we're aiming to keep a dedicated code branch in Git. Branches may diverge and contain different history, however for some…
lysergic-acid
  • 19,570
  • 21
  • 109
  • 218
0
votes
1 answer

Preserving read-only flags in Mercurial (or equivalent)

We'd like to prevent changes to SQL migration scripts that are in source control and have already been applied. Is there a way to mark files (specifically, SQL migration scripts) as read-only and persist this in source control? We could resort to…
James Crowley
  • 3,911
  • 5
  • 36
  • 65
0
votes
2 answers

Internal Repository Setup

I have jumped on the GIT bandwagon lately. I am confused about which DVCS hosting to use. I am in a notion that i can setup my own thing on a dedicated/vps server. So, my question is that, how to setup my own internal remote repository management…
beNerd
  • 3,314
  • 6
  • 54
  • 92
0
votes
1 answer

Fossil: recognise changes while repo closed

I know, I should only change files in a project, when the repository is opened. But I now tried to see what happens when I change a file when the repo is closed, because I will often do that, because I'm going to forget to open repos. It's…
Ralf
  • 598
  • 1
  • 7
  • 17
0
votes
2 answers

Fossil: "not a valid repository" - deleted repository

I'm trying fossil for the first time, and messed it up within minutes. I created a repository, then apparently ran commands in the wrong folders etc., eventually deleted the test repository, in order to restart. (Somewhere I had read that fossil was…
Ralf
  • 598
  • 1
  • 7
  • 17
0
votes
1 answer

Mercurial : how to recognize partially overlapped histories (fine grain)?

How can Mercurial (or any other DVCS) recognize partially overlapped histories? E.g. fine grain / coarse grain. Is there any way in Mercurial to usefully merge two repositories where the lines of history are similar, but not identical? E.g. where…
Krazy Glew
  • 7,210
  • 2
  • 49
  • 62
0
votes
2 answers

mercurial update hook gives me permission denied error

I am using SSH to push to the central mercurial repository on the remote server. I put in a hook so the remote repo will update: [hooks] changegroup = hg update >&2 when I try to push to the remote repo, the push succeeds, but I get this…
esther h
  • 1,468
  • 2
  • 17
  • 35
0
votes
1 answer

How to remove case sensitive folder from Mercurial repo?

In BitBucket Mercurial repo, I have two folders: converter and Converter. But when I clone the repo, I have only Converter folder that has content of both (MacOS). I want to remove Converter folder. How can I do it?
1 2 3
60
61