blob: 04853c177d797570cc7d424761e6d3ad88a7c217 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# post-receive hook for notifications
# arguments received
# <oldrev> <newrev> <refname>
# irc notification
# change the path of the python script
a=`git log --format=format:"%an | %s" $1..$2`
python git-post-commit.py "irc.freenode.net" "AliasCommit" "#alias" "$a"
|