Questions tagged [mercurial-extension]

Mercurial extension is a mechanism to customize and extend functionalities of the Mercurial DVCS.

Mercurial extension is a mechanism to customize and extend functionalities of the Mercurial DVCS.

More information:

109 questions
0
votes
1 answer

Mercurial files Extraction

I was trying to extract just the modified files between two revisions along with its folder location structure. I have loaded your extension pack.py and ran the command exportfiles but could not crack it. The loaded extension appears inactive but…
0
votes
1 answer

Mercurial guestrepo extension: scope and use cases

I am looking at the mercurial guestrepo extension and I cannot truly determine what exactly it provides over simply instantiating repositories nested in each other (i.e NOT defined as subrepos). The only plus seems that with a single single command…
ARF
  • 7,420
  • 8
  • 45
  • 72
0
votes
1 answer

How can one remove changesets from revision history of MQ repository?

I have a Mercurial repository. It has a patch queue (which itself is a repository containing patches). Unfortunately I have performed too many unsightly commits to MQ (with hg commit --mq command). If I run hg history --mq command, it will print…
0
votes
1 answer

Mercurial & Keyword ext.: updating keywords when tagging a revision

I'm using Mercurial with the keyword extention, and I'm very pleased with it. Expect one thing, expanding the version tag which is: Version = {latesttag|nonempty} All the keywords are expanded as expected on every check in. But when I'm tagging a…
Roland Schmitz
  • 115
  • 3
  • 12
0
votes
1 answer

How can I color Mercurial branches based on their names?

I want to distinguish feature/stage/release branches by color. I have a branch naming convention. Is there a way to color branch names in the output of hg branches according to some regexp-based rules? Is there a better way to do this other than…
Luboš Turek
  • 6,273
  • 9
  • 40
  • 50
0
votes
1 answer

Cannot clone Mercurial repository

I'm having difficulty cloning a repository in Mercurial. The repository is stored at Kiln on demand, though I'm not sure that makes much difference. I have a new install of Tortoise HG, which has of course installed the hg command line onto my…
Gary Stanton
  • 1,435
  • 12
  • 28
0
votes
1 answer

How can I see approximate hours worked during the week with mercurial?

So I know about the Mercurial activity extension, however the data it seems to plot is number of commits. I don't think that is a good metric. If in an hour you make 20 commits or 1 commit, I don't think one can deduce much from that. I think it's…
Daniel Gerson
  • 2,159
  • 1
  • 19
  • 29
0
votes
1 answer

Remove merger of history in mercurial

I have such a history of commits: [A] - [B] - [D] - [F] - [H] - [I] \ \ / [C] - [E] - [G] How do I get the following story: [A] - [B] - [D] - [F] - [H] - [I] \ / [C] ------- [G'] where [E] -…
Nikitron
  • 87
  • 1
  • 1
  • 6
0
votes
0 answers

Mercurial purge command only deleting deepest child folder in Windows?

I am using the purge command in Windows for Mercurial (purge is a bundled extension) to delete all untracked and ignored files from the repository. hg purge --all However, it is showing weird behaviour in where it will only delete the deepest child…
gbmhunter
  • 1,747
  • 3
  • 23
  • 24
0
votes
1 answer

Mercurial - How to push current changeset to default branch

I'm not sure why this is so hard to figure out or google, but I am trying to take changes I made to a private branch and push them to the default branch. In other words: I pulled from the default branch a few weeks back and made major changes Since…
E.S.
  • 2,733
  • 6
  • 36
  • 71
0
votes
3 answers

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 time with hg histedit trying to rearrange all the…
vorou
  • 1,869
  • 3
  • 18
  • 35
0
votes
1 answer

Remove not-matching lines from hgignore

Is there an Mercurial extension that removes lines from .hgignore that aren't matching any files in the local repository.
Kirill
  • 3,364
  • 2
  • 21
  • 36
0
votes
4 answers

Mercurial: How can I keep stuff locally only?

We have some restrictions on what we are allowed to put in our central Mercurial repository. Is there some way I can keep stuff in my local Hg repository, without having it pushed to the central one? Note: The files might be connected to files in…
Olav
  • 1,758
  • 4
  • 27
  • 49
0
votes
2 answers

How to change my Mercurial web interface aspect

I started using mercurial now, and I have the web interface on localhost/hg. Now I wanted to change the graphic aspect of the Mercurial page, change the look. (CSS, icon, icon_link, ...) I've searched everywhere and can not find anything about…
Jorge B.
  • 1,144
  • 2
  • 17
  • 37
0
votes
1 answer

Merging mercurial repo after lfconvert

I want to use the largefiles extension to track binary data in my repos. The documentation states that you have to convert your "normal" repo to a "largefiles" repo. Like so: hg lfconvert normal_repo largefiles_repo Is it possible to merge two…