equal
deleted
inserted
replaced
1 ''' |
1 ''' |
2 These are examples of useful hooks in Python for Mercurial. |
2 Examples of useful python hooks for Mercurial. |
3 ''' |
3 ''' |
4 |
|
5 from mercurial import patch, util |
4 from mercurial import patch, util |
6 |
5 |
7 |
|
8 def diffstat(ui, repo, **kwargs): |
6 def diffstat(ui, repo, **kwargs): |
9 '''Use it like: |
7 '''Example usage: |
10 |
8 |
11 [hooks] |
9 [hooks] |
12 commit.diffstat = python:/path/to/this/file.py:diffstat |
10 commit.diffstat = python:/path/to/this/file.py:diffstat |
13 changegroup.diffstat = python:/path/to/this/file.py:diffstat |
11 changegroup.diffstat = python:/path/to/this/file.py:diffstat |
14 ''' |
12 ''' |