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

learn more… | top users | synonyms

0
votes
0answers
12 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
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
0answers
14 views

Configuring Mercurial ACLs under Windows/hgweb

I have Mercurial 2.3.1 set up under Windows/hgweb.cgi and serving up repos under IIS 7.0/https to authenticated network users. I'm trying to set up ACLs to limit pushes to certain files/dirs on the ...
0
votes
1answer
22 views

Mercurial pretag hook called even with --remove option

I am a newbie to Mercurial and I am writing a pretag hook to check policy on tag names. I have the below code. version_re = r'(ver-\d+\.\d+\.\d+|tip)$' def invalidtag(ui, repo, hooktype, node, tag, ...
0
votes
1answer
32 views

Mercurial: create local copy of a remote repository at the remote respository

I use Mercurial on desktops, and then push local repositories to a centralized server. I noticed that this remote server does not hold local copies of files in its repositories (the directory is ...
1
vote
1answer
39 views

Mercurial: how to add a hook on pull

I've searched awhile for this and haven't seen anything. Which could mean, it's not supposed to be done or it just can't be done. I looked at a list of hooks for mercurial and I could not seem to ...
1
vote
1answer
125 views

hg commands in powershell hook from tortoisehg

I created a powershell script to run as a commit hook to write the username to a file. The command I am using in powershell to extract the username is: $repodir = ...
2
votes
1answer
56 views

hgweb alternatives to allow_push

I've got Mercurial running on IIS7 fine. One thing that is frustrating is that allow_push will only take a list of usernames rather than a group. To that end, I was wondering if it'd be possible to ...
0
votes
1answer
48 views

Mercurial hook hgrc

I know how to include Mercurial hooks in my local repository. This is done by adding the hook to the hgrc file along with the location of the Python code and the Python hook. [hooks] ...
0
votes
1answer
28 views

Prevent retroactive modification of database migrations between mercurial branches

Is it possible to prevent someone from pushing commit which touches already applied (committed to separate branch) database migrations? For example, in default branch there are existing migrations 01 ...
0
votes
2answers
76 views

Make TortoiseHG use my Python installation

I created some python hooks for Mercurial that use some external libraries (namely jira-python). In Linux, I install the packages using pip. In Windows, however, Mercurial comes with a bundled version ...
0
votes
1answer
89 views

Mercurial eclipse plugin push different server

I have installed mercurial and configured in .hgrc file like this: default (server-1) default push (server-2) This works fine in command line as it is using .hgrc file. I tried using the eclipse ...
1
vote
1answer
75 views

Mercurial notification extension globs ignored

I am attempting to use file patterns to limit push notifications to specific directories. The following glob patterns in [usersubs] are not triggering emails, though the basic patterns of asterix and ...
0
votes
1answer
60 views

applying database patches via mercurial hooks

I'm currently trying to determine how to apply mysql database patches via mercurial commit hooks. Basically, I have an incoming commit hook pointing to some script in my search path. This all works. ...
0
votes
2answers
99 views

Mercurial: Force delete after remote hg update hook

We have a hook setup on our remote repositories to automatically update the repo after it receives a push. It works great except when we locally delete a file and then push. We receive messages like ...
0
votes
1answer
102 views

Disallow hg push -f - but allow hg pull creating new head

As a followup for Mercurial: enforce "hg pull -u" before "hg commit" I have started to use a hook [hooks] pretxnchangegroup.forbid_2heads = /usr/local/bin/forbid_2head.sh where ...
0
votes
1answer
94 views

Adjusting mercurial notify extension to send notification due to a certain string in the commit message?

I need to send notifications to certain email due to a certain string in the commit message in the mercurial repository. I have now the notify extension working but it sends notifications at every ...
0
votes
2answers
62 views

disable/deprecate (but not delete) mercurial repository

My colleagues and I use several repositories that live on a centralized (ubuntu, if it matters) server. For several of our projects, we include the same 4 repositories as subrepositories in lots of ...
1
vote
0answers
41 views

Mercurial rollback hook?

I'm writing an extension for which it would be very convenient to be able to perform some logic after a rollback is made. I looked through all of the documentation I could find on hooks, but I ...
0
votes
1answer
113 views

hg changegroup hook

I have written a changegroup hook that is invoked in my local repository when I pull changes from the remote server copy. In the hook implementation, I invoke hg update to pull in the changes. On ...
1
vote
0answers
46 views

Mercurial EncodeDecodeFilter tempfile template not picking up my OUTFILE from sed batch

I am currently being ruthlessly disabused of the simple, and seemingly necessary premise that if you follow the docs, things will work as advertized. While I do understand that this is not always the ...
0
votes
1answer
99 views

mercurial: including precommit-changed file

On commit to repository I have a hook defined in Mercurial: [hooks] precommit.exportDB=exportDB.bat This creates/updates a SQL-dump from my database, which should be included in the commit. BUT: ...
0
votes
0answers
115 views

Mercurial pretxncommit.pep8 hook not finding pep8 violations

If I run pep8 over a file in my Mercurial repository it will list all the pep8 violations. I've installed hghooks and set up the pretxncommit.pep8 hook, but it never reports any violations when I ...
2
votes
1answer
52 views

How to run mercurial changegroup hook only after a rebase?

We have a simple mercurial hook that runs every time we pull remote changes. We use changegroup hook. Our hook rebuilds some dlls and copy them to a folder. We automatically rebase when we do a ...
1
vote
0answers
56 views

Determining destination repository in outgoing hook

I'm attempting to write a Mercurial hook that blocks pushes under certain conditions, but to determine whether to block the push it needs to know the repository the push would be going out to. I know ...
1
vote
3answers
332 views

Call batch file from webservice to write to a text file

This may seem a bit crazy, but if you can tell me a better way please do. I need a webservice that will display the mercurial revision number for the current version. I have a very simple batch file ...
4
votes
1answer
131 views

Reading command line arguments from Mercurial prechangegroup hook

I'm attempting to disallow pushes to a Mercurial repository if a certain condition holds true. However, it is essential that if the user uses push --force, the push goes through regardless. I know ...
1
vote
0answers
23 views

How to implement a custom rules for pushing changes on hg or git in a way that is easy to deploy?

Use case: you want to prevent people from pushing to trunk when trunk is in marked as red - in this case you want to ask them to confirm before accepting this. The problem is local .hg/hgrc hooks is ...
5
votes
1answer
426 views

Mercurial Hook - change a commit message pre commit

Edit Made this basic hook to prevent branch name & commit message bugID mismatches. https://gist.github.com/2583189 So basically the idea is that the hook should append " BugID:xyz" to the end of ...
4
votes
1answer
328 views

How to run “hg update” via mercurial incoming hook

What is the correct way of running hg update in an incoming hook? Is it: [hooks] incoming.foo = hg update Or this Or is there a more elegant way of doing this?
0
votes
2answers
307 views

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 ...
2
votes
2answers
953 views

tortoisehg one step commit push - how to and where is the log file

Iam using win xp with Tortoisehg 2.3. I use bit bucket to backup my personal source code. (rarely for true version control, more as a source backup store). Right now I have to right click on my repo, ...
3
votes
3answers
386 views

Mercurial: enforce “hg pull -u” before “hg commit”

I have in some cases a need to enforce that Mercurial-users have run hg pull -u before any hg commit can be allowed, i.e., hg pull will mean that the incoming queue is empty — and furthermore I also ...
1
vote
1answer
112 views

How can I commit a file before the tag is committed?

I want to automatically bump the version of my project when I use hg tag XXX. I have set up a pretag hook in my hgrc (note: I have removed the stuff that ensures it is outputting to VERSION in hg ...
0
votes
2answers
280 views

Mercurial precommit script to change a file

Despite the decentralized nature of Mercurial, we have a centralized server that we all push to and that does nightly builds, packaging, etc... Here's what we want to achieve: One of the files that ...
0
votes
1answer
198 views

Mercurial Commit Hook with Python main function

I'm trying to create a complex mercurial commit hook in python. I want to also be allowed to pass parameters using OptionParser. Here is the gist of what I have so far: .hg/hgrc config: [hooks] ...
2
votes
2answers
299 views

Mercurial changegroup hook: repository URL

How can I, on a Mercurial repository server, figure out the current repository URL or at least name (subpath) in a changegroup — or somewhat equivalent — hook? I'm running HgWeb on IIS. $HG_URL ...
2
votes
1answer
214 views

How to update & restart a Node app with Mercurial following a push? (Equivalent of git post-receive in hg)

I've worked with Git to accomplish this before, but require Mercurial for another project. My Git recipe included a post-receive hook that looked like the following: #!/bin/sh ...
2
votes
2answers
240 views

Using a Django model from a mercurial python hook

I'm trying to queue up some build requests in a DB during a changegroup hook. The DB table is managed by a Django app. So, in the hook, I want to use the Django model to submit the build request. ...
1
vote
2answers
116 views

Mercurial hooks — pass information between hooks?

I currently have a pre-commit hook in my mercurial project that gives the user the option to update the version number of the project if they wish (e.g. 1.0 to 1.0.1 or 1.1 or 2.0). They select one of ...
14
votes
2answers
420 views

Easy, painless way to test new mercurial hooks (that are works in progress)

I'm in the process of writing a mercurial changegroup hook. I don't have everything figured out yet, but the process of trial and error is made more painful by the fact that I have to keep committing ...
6
votes
1answer
152 views

Can I configure mercurial hooks like some extensions are configured in the hgrc file?

I know how to specify which hooks are run when. What I want to know is if it is possible to pass config into the hook via the hgrc file. Extensions can do this, e.g. [extensions] someextension = ...
0
votes
1answer
288 views

Mercurial pre-push hook scanning the working copy

I need to setup a hook on a repository where people can push, that would run some validation (the goal is to reject the push if validation fails). I already have some hooks setup to auto-update after ...
3
votes
2answers
472 views

Call a mercurial command (“hg update”) from a python hook

I have Mercurial hgweb set up on Windows 2008 64 bit and IIS. The location of the repositories is a network share. I want to create a hook on the repository to issue an "hg update" command on a ...
2
votes
2answers
144 views

Is it possible to specify Windows shell to use when specifying hooks in Mercurial?

I am trying to set up a hook on a remote repository (using hgweb) on a Windows IIS server. The issue I have is that the repository is specified as a UNC path in hgweb's config, and the hook executes ...
0
votes
1answer
88 views

Less frequent/verbose notifications for hg push

My project uses hgext.notify. Currently incoming.notify = separate messages on every changeset. Considering changegroup notify, but even that contains info about every changeset, just all in one big ...
2
votes
1answer
59 views

How to get the revision history between particular time frame or after a certain revision or commit id upto the latest using Mercurial API?

I want to fetch all the commits with their changeset after a particular commit id or time. Is there any straight way to do that using Mercurial API?
0
votes
2answers
368 views

Hgweb and changegroup hook not working

I'm using hgweb to publish my local repositories. /project_path/project_name/.hg/.hgrc have: [hooks] changegroup.bitbucket = hg push ssh://hg@bitbucket.org/user/repo When i'm use hg serve, all ...
2
votes
2answers
473 views

Mercurial HG_NODE hook variable on windows

I'm currently testing mercurial hooks on windows and it seems like I cannot access hook variables.... here's hgrc content : [hooks] prechangegroup = ruby prechangegroup.rb test1 test2 $HG_NODE ...
2
votes
1answer
545 views

Automating Review Requests with ReviewBoard and Mercurial using Python hooks

Here is my problem: I got a remote mercurial repository where the hook is gonna be setup either incoming or changegroup, and I got a ReviewBoard setup on a different server. The idea is to automate ...

1 2