"Jeremy Ramer" [off-list ref] writes:
I had to make one change to this example to get it to work. I'll put
it here for completeness
#!/bin/sh
case "$*" in
"refs/remotes/origin/master")
cd ..
GIT_DIR=".git"
git merge refs/remotes/origin/master
;;
esac
Yeah, thanks for correction. My bad not resetting GIT_DIR.
By the way, I _did_ write these seemingly extra spaces around $* and the
refname on purpose.