Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Useful Mercurial Hooks [closed]

What are some useful Mercurial hooks that you have come across?

A few example hooks are located in the Mercurial book:

  • acl
  • bugzilla
  • notify
  • check for whitespace

I personally don't find these very useful. I would like to see:

  • Reject Multiple Heads
  • Reject Changegroups with merges (useful if you want users to always rebase)
    • Reject Changegroups with merges, unless commit message has special string
  • Automatic links to Fogbugz or TFS (similar to bugzilla hook)
  • Blacklist, would deny pushes that had certain changeset ids. (Useful if you use MQ to pull changes in from other clones)

Please stick to hooks that have either bat and bash, or Python. That way they can be used by both *nix and Windows users.

like image 861
Nathan Lee Avatar asked Nov 10 '09 06:11

Nathan Lee


3 Answers

My favorite hook for formal repositories is the one that refuses multiple heads. It's great when you've got a continuous integration system that needs a post-merge tip to build automatically.

A few examples are here: MercurialWiki: TipsAndTricks - prevent a push that would create multiple heads

I use this version from Netbeans:

# This software may be used and distributed according to the terms
# of the GNU General Public License, incorporated herein by reference.
#
# To forbid pushes which creates two or more headss
#
# [hooks]
# pretxnchangegroup.forbid_2heads = python:forbid2_head.forbid_2heads

from mercurial import ui
from mercurial.i18n import gettext as _

def forbid_2heads(ui, repo, hooktype, node, **kwargs):
    if len(repo.heads()) > 1:
        ui.warn(_('Trying to push more than one head, try run "hg merge" before it.\n'))
        return True
like image 99
Ry4an Brase Avatar answered Nov 10 '22 11:11

Ry4an Brase


I've just created a small pretxncommit hook that checks for tabs and trailing whitespace and reports it rather nicely to the user. It also provides a command for cleaning up those files (or all files).

See the CheckFiles extension.

like image 30
Macke Avatar answered Nov 10 '22 10:11

Macke


Another good hook is this one. It allows multiple heads, but only if they are in different branches.

Single head per branch

def hook(ui, repo, **kwargs):
    for b in repo.branchtags():
        if len(repo.branchheads(b)) > 1:
            print "Two heads detected on branch '%s'" % b
            print "Only one head per branch is allowed!"
            return 1
    return 0
like image 5
Nathan Lee Avatar answered Nov 10 '22 09:11

Nathan Lee