サーバ
git init --bare ~/example.git
cat <<'EOL' > ~/example.git/hooks/post-receive
#!/bin/sh
if [ -e ~//example ]
then
cd ~/example
git --git-dir=.git pull
else
git clone ~/example.git ~/example
fi
EOL
chmod 755 ~/example.git/hooks/post-receive
開発機
git init
git remote add origin ユーザ名@ホスト名:~/example.git
git add -A; git commit -m "`date '+%Y-%m-%d %H:%M:%S'`"
git push -u origin master
アンインストール
rm -rf ~/example
rm -rf ~/example.git