Mercurial is a fast, open-source, distributed version control system.

learn more… | top users | synonyms (1)

0
votes
0answers
5 views

Can I merge multiple consecutive changesets into a changeset in Mercurial

Let's say I have changeset A, and I make changesets B1, B2, and B3 on top of A, while another developer makes changesets C1, C2, and C3 on top of A. The other developer pushes his code to the central ...
1
vote
0answers
5 views

hg abort: cannot refresh immutable revision

I'm using hg with the mq extension installed (I do not have the rebase extension to the best of my knowledge) After making a few changes and doing a few qdiffs, qrefs I am suddenly faced with this ...
0
votes
0answers
10 views

Working directory history

Say I have a repository with 5 changesets. I run hg update 1 to update the working directory to changeset 1. I run hg update 3 to update the working directory to changeset 3. I run hg update 5 to ...
0
votes
0answers
5 views

How to tell when a user is making a tag vs a commit in Mercurial

I have a hook written for Mercurial. It uses the pretxncommit to make sure that the user includes an 'issue number' in their commit message. But sometimes the user may use the 'hg tag' command instead ...
-1
votes
1answer
26 views

Removing a file from versioning but keeping it locally?

What is the hg command for removing a file from versioning but keeping it locally? I can do hg remove but that will also remove the file locally. It's the SDK files that I don't want to version.
0
votes
4answers
34 views

Total Count of Change Sets for Mercurial and Git

Is it possible to count the number of Mercurial/Git change sets with a simple command line with arguments?
0
votes
1answer
9 views

Using pip with 'insecure' mercurial

Is it possible to use pip with a requirements file to install from a Mercurial repository which needs to be accessed using --insecure in order to work. The repository is accessed via SSL, and due to ...
0
votes
0answers
12 views

How can I block merges to the default branch from being pushed to my Mercurial blessed repo?

So, I am using Perfarce which imports Perforce's changelists into the default branch of a Mercurial repository. So far so good, but, if someone merges to that default branch, we are all effed. ...
0
votes
0answers
22 views

How to show current branch name in windows explorer for mercurial

Background: We're using Mercurial (hg) with TortoiseHg on Windows 7 in our projects. Since we're using TortoiseHg, there are a lot of things we do from the explorer window, i.e. we'll never open a ...
0
votes
1answer
35 views

Simple mercurial webdev repo setup: features vs. fixes

I have inherited a Mercurial system for a basic web site, but I’m new to Mercurial and am just the temporary site babysitter until we find somebody a lot more competent than me. But in the meanwhile, ...
2
votes
1answer
45 views

In Mercurial, how to combine unrelated repositories, leaving only one root?

I have a 4 versions of a project. Versions 1-3 were "prototypes" that were originally not under source control (they exist as separate directories in the filesystem). Version 4 has been under source ...
0
votes
1answer
19 views

Mercurial pre commit hook to modify settings

I'm trying to setup my web-app (browser extension) so that I can seamlessly move between development, test and production. For the most part I've avoided hardcoding any URLs into the app, but there ...
0
votes
1answer
34 views

In Mercurial on Windows how do I set (any) editor correctly? (Can't commit)

I have TortoiseHg installed on Windows XP. Although I can use most hg commands normally from the command line, I cannot use hg commit (without the -m option) because it fails to launch my editor. ...
0
votes
1answer
43 views

Mercurial equivalent of svn's merge --record-only?

We've recently moved our codebase from subversion to mercurial, and are doing our first release to production from the mercurial codebase this weekend. We have a three repo setup, let's call them ...
1
vote
3answers
42 views

HG How to get commited files only in specific branch

I need to get all committed file in specific branch from command line. Is there any workaround solution for this query? Please let me know what the command to getting files.
3
votes
2answers
47 views

Using PlasticSCM (or any DVCS client) to connect to TFS

Has anyone used the PlasticSCM client tools to work against a TFS repository? Basically my current client is using the new hosted TFS for version control (not TFS-Git, just standard TFS), but I have ...
1
vote
1answer
41 views

Using git with Logic Pro

tl;dr: Will git or Mercurial have problems versioning a project with a few small files that change frequently and many large files that can change but rarely do? I write music using Logic Pro, and ...
0
votes
1answer
34 views

I cloned a repository from a specific revision and I am ready to push, now what?

I cloned a remote repository from a specific revision (prior to head). Since then, I have committed changes to my local repo and I'm ready to push these changesets to the remote repo. I'm just ...
0
votes
0answers
30 views

Using raspberry-pi as mercurial server? [closed]

I have a nice little raspberry-pi and the most recent Raspbian Wheezy installed on it. There's 5.6gigs of space available and I have mercurial installed. What I would like to know is how I can setup ...
1
vote
2answers
23 views

Eclipse project files in Mercurial

I need to work togehter with multiple assistant developers on an Eclipse CDT project which is versioned with Mercurial. The Eclipse project settings such as build setting are defined in the .cproject ...
0
votes
3answers
37 views

Move Mercurial Repository To Another Server

We have a project that lives in a mercurial repository. Our customer would like to take ownership of the code base by doing the following: Set up a mercurial repository on a server belonging to ...
0
votes
2answers
27 views

Mercurial - revert the uncommitted changes after did “hg update -C”

I'm new to Mercurial. I did hg status and I saw the files that changed since the last commit have M in front. I then tried hg update -C. Is there any way I can get back the version of the files with ...
0
votes
1answer
26 views

Mercurial branching - share changes between bookmark-branches

Basically I have repository with such structure: A(branch:stable) -> B(branch:dev) -> C(branch:dev, bookmark:feature) (and similar siblings) In one of C sibling (to say - E) I made some changes that ...
0
votes
0answers
21 views

Template to log destination and origin of grafted, transplanted or rebased changesets

Given the changeset grafted (or transplanted, or rebased) from the other branch to the default branch: hg init repo cd repo echo a > a; hg commit -Am "default branch" hg branch other echo b > ...
2
votes
2answers
33 views

Mercurial: which config property controls the encoding of file contents?

Is there a dedicated Mercurial configuration property which specifies the encoding of file contents and hence should be used by a Mercurial client to properly display a file? I've found web.encoding ...
1
vote
1answer
28 views

How to undo a revert in mercurial

After I had accidentally added several files with hg add I wanted to revert that with hg revert --all Unfortunatelly I hadn't committed my intended changes so they were reverted as well. Can I ...
0
votes
1answer
29 views

android version control mercurial with dropbox if possible

I'm looking into how I could develop on my android tablet and desktop computer. I have all the development tools I need on the android tablet. However there is a few of us that work on these projects. ...
1
vote
1answer
31 views

Deleting tracked file from the file system vs hg remove

I'd like to know if there are any consequences when deleting a tracked file from file system (e.g. via windows explorer) in comparison with when using hg remove to delete it from file system and ...
2
votes
2answers
61 views

How to hg ignore filename with no extension?

Mercurial can be configured to ignore files whose filename have a certain extension. For example, *.txt files can be ignored by adding this to ~/.hgignore: syntax: glob *.txt How can I setup my ...
0
votes
0answers
36 views

.hg/hgrc add to repository [duplicate]

I have this code in my hgrc file located into my .hg folder of repo: [hooks] precommit = ./VersionSettor.pl VersionSettor.pl script also located in .hg folder and intended for changing once file ...
0
votes
1answer
17 views

How can I use two bitbucket accounts (with seperate ssh keys) on one PC with TortoiseHg?

I have a BB (BitBucket) account for work and a BB account for my self and want to be able to access them both from one PC using TortoiseHg with SSH. When you add the two keys to Pageant and then try ...
1
vote
0answers
21 views

My intellij java project can't find misc.xml

I have a java project in Intellij and use Hg for version control. I ignored some files with this .hgignore file syntax: glob target/* .idea/* *.iml and deleted all these files which was committed ...
0
votes
1answer
27 views

How do I configure chrooted account on CentOS 6 to use mercurial (python library issue)

I'm trying to eradicate FTP from our web publishing routines and have installed Mercurial on our server. I've been pushing to the live repositories for some time to various user accounts on the ...
0
votes
2answers
30 views

If I use histedit frequently, will MercurialMq be a better fit?

When I'm working on some particular feature I often fix other pretty much unrelated but easy-to-fix stuff. I make some "dirty" commits during the work. When the feature is finished, I spend a lot of ...
0
votes
1answer
20 views

Mecurial: commit automatcally returns “abort: empty commit message”

I have been using mercurial for a few months now and just the other day when I went to do an hg commit, my editor launched but with an empty file named something like "/tmp/hg-editor-I48e8Z.txt" and ...
0
votes
1answer
22 views

How can clone the mercurial repo with all history

I have the server with mercurial. Now i have the home computer where i am pushing all my repo to bitbucket account. My Work server has all the revisions like 900 on them. Now i want to clone that ...
0
votes
2answers
18 views

Common HgNotify template configuration

Is there a way to point to a common HgNotify configuration in each repositories' hgrc file on windows? I have the below notify section in each hgrc for every repo that I have on the server, and when ...
0
votes
0answers
53 views

How to convert an SVN repository made by TortoiseSVN under Windows, to Mercurial under Linux?

I have an SVN repository which was created by TortoiseSVN under Windows, I would like to convert it to Mercurial under linux. The repository is a directory on Ubuntu and I have tried to follow ...
0
votes
1answer
18 views

HgHooks and TortoiseHG [closed]

I'm trying to use hghooks with tortoisehg. I installed the necessary packages in python, added [hooks] section in hcrc , but when i commit it gives the following error: abort: pretxncommit.pep8 hook ...
0
votes
2answers
35 views

How to keep tag at tip of branch?

Let's say I have a changeset I've tagged as "stable". Now I update to "stable" and then start writing my new feature, committing along the way. It's not ready yet, so I don't want to merge it back ...
0
votes
0answers
35 views

Mercurial Error 400: Bad Request with return code 255

Our repository consists of two branches a Default Branch(Where new features are developed) and Stable Branch(Where bug fixes are implemented). When a developer merges the Default Branch into the ...
0
votes
0answers
15 views

How to clone repository with TortoiseHG located over svn://?

I have followed http://abdullin.com/journal/2010/3/22/use-tortoisehg-mercurial-with-svn-repository.html for configurating TortoiseHG over SVN, and it can successfuly copy repos over http:// ex. ...
1
vote
2answers
38 views

Ansible Mercurial clone hangs

When I try to clone a repository from Bitbucket with Ansible, it seems like the task 'hangs'. In the documentation I have found some information, but I'm not using SSH. If the task seems to be ...
0
votes
1answer
34 views

How to pause/resume repository cloning in mercurial?

I've recently needed to clone into development tree of some large projects (e.g. https://hg.mozilla.org/mozilla-central), but the problem is I'm on an slow unstable connection and thus I may not clone ...
0
votes
1answer
25 views

How to add commit information to file?

How can I automatically add information like below to certain files after committing? Last commit by Max, 30.02.2013, revision 123, branch xy (By the way, it's an index.html-file and and it would be ...
0
votes
1answer
26 views

mercurial hg update abort: no such file or directory

I'm working on a C++ project on OpenSuse Linux box using mercurial versioning and recently did a pull from our server repository to my local working directory. I just tried to do an hg update, but ...
0
votes
0answers
38 views

Split a repository, preserving relevant history and hiding irrelevant history

Suppose I have a repository like ~/src/.hg (or .git) ~/src/public ~/src/private There may be events in the history which changed files in both private and public in the same commit. I want to ...
3
votes
1answer
43 views

Mercurial merge repository as branch

I have two Mercurial repositories that are for different major revisions of the same project. The latter version is a massive change to the functionality, and especially the UI, of the project, but it ...
0
votes
0answers
42 views

TortoiseHg: “TortoisePlink.exe” is not recognized as an internal or external command

I have been stuck with this problem for almost a day now and finally decided to shout-out for help. Things I have already done: Updated my .ini file with: [ui] username = User Name ssh = ...
0
votes
1answer
14 views

HG ignore on Cloud9 IDE

Where and how can I create/edit the .hgignore file within a Cloud9 IDE project? The project was started by cloning a Mercurial repo. I don't see any mercurial specific files or directories.

1 2 3 4 5 104