I\'m new to git so I apologize (and please correct me) if I misuse terminology here, but I\'ll do my best.
I\'m trying to set up a bare git repo (hub) and a developm
Here is the script that ultimately worked. I think the bit I was originally missing that prevented it from working remotely was the unset GIT_DIR
unset GIT_DIR
#!/bin/sh cd /path/to/working-copy/ || exit unset GIT_DIR git pull repo branch exec git-update-server-info