contrib/python-hook-examples.py
author Yuya Nishihara <yuya@tcha.org>
Tue, 21 Jul 2020 20:49:05 +0900
branchstable
changeset 45184 3781e9f74b27
parent 43076 2372284d9457
child 45942 89a2afe31e82
permissions -rw-r--r--
hghave: fix possible int('') in has_clang_format()

'''
Examples of useful python hooks for Mercurial.
'''
from __future__ import absolute_import
from mercurial import (
    patch,
    util,
)


def diffstat(ui, repo, **kwargs):
    '''Example usage:

    [hooks]
    commit.diffstat = python:/path/to/this/file.py:diffstat
    changegroup.diffstat = python:/path/to/this/file.py:diffstat
    '''
    if kwargs.get('parent2'):
        return
    node = kwargs['node']
    first = repo[node].p1().node()
    if 'url' in kwargs:
        last = repo.changelog.tip()
    else:
        last = node
    diff = patch.diff(repo, first, last)
    ui.write(patch.diffstat(util.iterlines(diff)))