Mercurial is a fast, open-source, distributed version control system.
0
votes
0answers
4 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
24 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, ...
1
vote
1answer
29 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
0answers
14 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
22 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
42 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
1answer
30 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
45 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
38 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
32 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
27 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
22 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
34 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
24 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
25 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
20 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 > ...
1
vote
2answers
32 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
30 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
56 views
How to hg ignore filename with no extension?
Mercurial can configured to ignore files whose filename has a certain extension. For example, *.txt files can be ignored by adding this to ~/.hgignore:
syntax: glob
*.txt
How to ignore files whose ...
0
votes
0answers
35 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
14 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 ...
0
votes
0answers
18 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
19 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
19 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
17 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
51 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
16 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
31 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
36 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
22 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
37 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
37 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
vote
1answer
51 views
hg commit says “nothing changed”, but hg status -A shows many changed files
I've done some restructuring of my folder structure, and I'm having some issues with mercurial that I'm not sure why is happening.
hg status doesn't show any files.
hg status -A on the other hand ...
0
votes
1answer
31 views
Managing Django project with mercurial and PyCharm - choosing root folder
What is best/preferred/right/conventional way:
- Root of repository and PyCharm project = Django project folder with settings.py
- Root of repo and PyCharm project is the parent directory of Django ...
1
vote
1answer
31 views
Using mercurial to track readme file across multiple versions
I have version 1 of a project with a readme.txt file.
I clone my version 1 repo as version 2 so I can pull any bug fixes from v1 into v2.
v1 and v2 both have a readme.txt file, but it is completely ...
0
votes
0answers
19 views
PyCharm - Mercurial integration - named branches
Does PyCharm support named branches functionality of Mercurial?
0
votes
4answers
56 views
Is a Central Mercurial repo necessary?
Trying to find a workable workflow for multiple developers in our Coldfusion shop before we implement.
Currently, most of us (still) work directly in production. I want to change that.
If each ...
1
vote
1answer
33 views
TortoiseHg: ‘hg’ is not recognized as an internal or external command, operable program or batch file
I'm unable to find the command line tools in Mercurial-TortoiseHg version 2.7.2. I checked for hg.exe file and it is present at C:\Program Files\TortoiseHg path but whenever I try running the command ...
0
votes
1answer
36 views
Empty commit with Mercurial
Is it possible to do a commit without any changes in the current repository with Mercurial, like git's --allow-empty?
0
votes
3answers
76 views
Is there a real advantage using a web server for Mercurial repositories?
I am a remote worker and I have VPN access to a Windows file server share. It seems that everywhere I read that the recommendation is to use a Web server based repository. It would be a tough sell ...



