Make post-receive executable
[sockgit.git] / templates / hooks / post-receive
1 #!/bin/bash
2 while read OLD_REV NEW_REV REF_NAME; do
3 git push public $NEW_REV:$REF_NAME
4 done