| 1234567891011121314151617181920212223242526 | #!/bin/bashset -expushd docs/_siteexport GIT_DIR=.git-gh-pagesexport GIT_WORK_TREE=.if [ ! -d "$GIT_DIR" ]; then  git initfiif !(git remote | grep origin); then  git remote add origin [email protected]:orchardup/fig.gitfiecho ".git-gh-pages" > .gitignoregit add -ugit add .git commit -m "update" || echo "didn't commit"git push -f origin master:gh-pagespopd
 |