install-git-hooks 155 B

123456789
  1. #!/bin/bash
  2. mkdir -p .git/hooks
  3. cat >.git/hooks/post-commit <<EOF
  4. #!/bin/bash
  5. # Generated by $0
  6. touch -c configure.ac
  7. EOF
  8. chmod +x .git/hooks/post-commit