Mercurial hook is a mechanism to customize and extend functionalities of the Mercurial DVCS. More information: Man page section from official site: http://www.selenic.com/mercurial/hgrc.5.html#hooks Chapter from the definite user guide: Handling repository events with hooks Mercurial tag: ...
5
votes
3answers
181 views
How can I share a commit-hook in mercurial with all fellow developers?
we are working with mercurial and now we would like to introduce precommit hooks to keep the code clean. We would like everyone to somehow get the hooks, but we would also like to be able to update ...
4
votes
2answers
1k views
Mercurial hook to disallow committing large binary files
I want to have a Mercurial hook that will run before committing a transaction that will abort the transaction if a binary file being committed is greater than 1 megabyte. I found the following code ...
4
votes
2answers
762 views
Using Mercurial hooks to create/load database dumps for versioning
I've started using Mercurial for version-controlling my Drupal project source files (I'm both a VCS and Mercurial newbie). However, the database is still "version-controlled" using a directory of ...
3
votes
2answers
196 views
Mercurial hook to test that username is valid when pushing to repository
I have a "central" repository that I want to ensure that no one pushes changes in to with a wrong user name.
But I can not figure out how to make a hook that tests the user name against a positive ...
3
votes
1answer
196 views
Is it possible for my Mercurial hook to call code from another file?
I have a hook function named precommit_bad_branch which imports hook_utils. When invoking precommit_bad_branch via a commit I get the following error message:
error: precommit.branch_check hook ...
3
votes
1answer
204 views
Using hooks vs. wrapping commands in mercurial
What are the relative pros and cons for using hooks vs. using an extension that wraps a command for a particular task?
In other words, what are the criteria for deciding whether to use hooks or wrap ...
3
votes
1answer
525 views
Mercurial outgoing Hook
I'm looking to create a Mercurial hook that pushes to a backup remote repository when I push to a local repository. I thought I could hook the 'outgoing' hook, but this creates a infinite loop that ...
3
votes
8answers
2k views
Mercurial hook not executing properly
This should be a very simple thing to have run, but for some reason it won't work with my Mercurial repository. All I want is for the remote repo to automatically run hg update whenever someone pushes ...
2
votes
2answers
60 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
42 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 ...
2
votes
1answer
163 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 ...
2
votes
1answer
72 views
How should one manage hook specific files in the '.hg/' state directory?
I'm writing a series of changegroup and commit hooks using the native Python implementation of the Mercurial API. Part of this requires me to save certain bits of information that are specific to my ...
2
votes
3answers
193 views
How can I refuse mercurial check-ins that break the build?
I have a Java project that's managed using Mercurial, and built with Jenkins. Is there a way to prevent developers from checking in code that breaks the build? I know I can do it with Ant and ...
2
votes
1answer
85 views
Where do you put python code for hooks
I have created a python script I want a mercurial hook to call but what I cant figure out is where the working directory (or where to start the path to the script) should be from.
I know this ...
2
votes
4answers
285 views
How can I create a mercurial hook that prevents new heads?
I have several repositories that have been converted from SVN and moving forward we want make sure when people push to the repository they can't create additional heads. there are several hooks in the ...
2
votes
3answers
606 views
Get list of changesets in a changegroup (mercurial python hook)
I want a mercurial hook that will run JSLint/PyChecker/etc on all files that are modified. However, I do not have control over all hg clients, and want this to run on push to the master repository ...
1
vote
1answer
11 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?
1
vote
2answers
95 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
...
1
vote
2answers
75 views
How to disable pretxncommit hooks with mercurial queues or histedit?
I have some pretxncommit hooks in my local mercurial repository, those hooks are used to check that the commit message includes a reference to a ticket and some other sanity checks.
My problem is ...
1
vote
1answer
39 views
How to execute commandline application (bat) before mercurial commit?
I would like to execute command line application before each commit (push) to central repository. If application will execute with errors, commit should fail with some message.
I have found some ...
1
vote
4answers
111 views
How do I set up a hook in HG / Mercurial that gets dictated by the repository?
I have a need for a hook to run after update (this will build the solution they have updated) and I don't want to have to add that hook manually for each person that clones my central repository.
...
1
vote
0answers
135 views
hg clone error raise keyerror(key)
I have a main mercurial repo and a remote clone repo. After the initial clone I added a pretxnchangegroup hook function to the main repo. The hook function uses os.environ["REMOTE_USER"] to retrieve ...
1
vote
1answer
342 views
Mercurial changeset hook exists with status -1
I am using Mercurial SCM over a LAN using a normal shared folder instead of HTTP and I'm having a problem getting the auto update hook to run.
I have entered this hook as detailed in the FAQ. This ...
1
vote
1answer
795 views
Getting Mercurial in-process hook to run on Windows
I'm trying to get a Mercurial in-process hook to run on Windows.
The problem is not how to write the hook (I want to use an existing one, in this case BugTracker.Net's hook for Mercurial integration - ...
1
vote
1answer
1k views
Setting Environment Variables for Mercurial Hook
I am trying to call a shell script that sets a bunch of environment variables on our server from a mercurial hook. The shell script gets called fine when a new changegroup comes in, but the ...
0
votes
1answer
22 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 ...
0
votes
1answer
39 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 ...
0
votes
2answers
92 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 ...
0
votes
1answer
78 views
How to validate and enforce commit message in Mercurial?
What are all steps required to validate commit message with set of regular expressions?
We want to work in semi-centralized set-up so I need a solution for the developer clone (local repository) and ...
0
votes
1answer
89 views
Mercurial does not send emails using changenotify
I set up a http central Mercurial repository and try to send emails on every push. I follow instructions from mercurial page and from ...
0
votes
2answers
60 views
How can I enforce Mercurial clients to use a specific version of Mercurial?
As new versions of Mercurial are released, we want to somehow enforce that developers, designers, and others are using the approved (or later) version of Mercurial. For example, we are currently on ...
0
votes
1answer
25 views
How do I reference the repository's hgrc sections from within my custom hook?
I've written a generic changegroup hook function that I would like to customize for each repository by setting some hgrc section variables, like so:
[my_hook_params]
name = whatever
version = 1.0
...
0
votes
1answer
65 views
Mercurial hook to set policy on tag names
I write (in-process) hook to prevent add BAD tag name locally:
.hg/hgrc:
pretag.badtagname = python:.hg/hgcheck.py:localbadtag
.hg/hgcheck.py:
goodtag_re = r'(ver-\d+\.\d+\.\d+|tip)$'
def ...
0
votes
1answer
111 views
Why doesn't my mercurial pre-commit hook work in MinGW
I have a pre-commit hook in my .hgrc file which checks if more than 5MB of files will be added to the repository. The hook is:
pre-commit.added-files-too-large = test 5000 -gt `hg status --added ...
0
votes
3answers
168 views
hook to limit push to only one branch at a time
I’m trying to create a hook that blocks pushes to a remote repository if you are trying to push more than once branch.
Here’s the hook:
#!/bin/bash
HG_EXE="/opt/csw/bin/hg"
CHANGESETS=`${HG_EXE} ...
0
votes
3answers
550 views
Mercurial push error - hook failed
I committed some changesets. Now I want to push them to remote repository.
I get this error during push
pushing to http://hguser:***@z2xeu:1337/hg/cms
searching for changes
1 changesets found
remote: ...