Skip to content

Instantly share code, notes, and snippets.

@tru2dagame
Last active August 29, 2015 14:24
Show Gist options
  • Save tru2dagame/b546695c078d700dc006 to your computer and use it in GitHub Desktop.
Save tru2dagame/b546695c078d700dc006 to your computer and use it in GitHub Desktop.
GIT hooks post-receive

GIT hooks

post-receive

#!/bin/sh
cd /path/to/working-copy/ || exit
unset GIT_DIR
git pull

exec git-update-server-info
or try this in a clean way
#!/bin/sh
cd /path/to/working-copy/
env -i git pull
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment