Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 445875
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T21:24:53+00:00 2026-05-12T21:24:53+00:00

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

  • 0

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.

  • 1 1 Answer
  • 1 View
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T21:24:53+00:00Added an answer on May 12, 2026 at 9:24 pm

    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
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I failed to create a mini-library with some useful functions that I have found
I have found DoctrineExtensions module that has implement some useful MySQL functions. But I
Does anyone have some useful beginner tutorials and code snippets for playing with basic
I have some useful typedefs on a header file called utypes.h. I have decided
I have some useful wpf buttons to test some functionality. It would be good
I have a program where I want to scrap some useful study material for
I have some useful code written in C# and I want to use it
What are some useful SQL statements that should be known by all developers who
I have some useful regular expressions in Perl. Is there a simple way to
I am trying to set up some useful coding templates in vim, for example

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.