Makefile 308 B

12345
  1. gitconfig:
  2. for hook in commit-msg ; do if ! [ -x .git/hooks/$$hook ]; then cp util/gitconfig/$$hook .git/hooks/$$hook; chmod +x .git/hooks/$$hook; fi; done
  3. git config remote.origin.push HEAD:refs/for/master
  4. git config branch.autosetupmerge always
  5. echo "Don't forget to set up your name and email in git"