mirror of https://github.com/docker/compose.git
30 lines
424 B
Plaintext
30 lines
424 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
pushd docs
|
||
|
|
||
|
export GIT_DIR=.git-gh-pages
|
||
|
export GIT_WORK_TREE=.
|
||
|
|
||
|
if [ ! -d "$GIT_DIR" ]; then
|
||
|
git init
|
||
|
fi
|
||
|
|
||
|
if !(git remote | grep origin); then
|
||
|
git remote add origin git@github.com:orchardup/fig.git
|
||
|
fi
|
||
|
|
||
|
cp .gitignore-gh-pages .gitignore
|
||
|
echo ".git-gh-pages" >> .gitignore
|
||
|
|
||
|
git add -u
|
||
|
git add .
|
||
|
|
||
|
git commit -m "update" || echo "didn't commit"
|
||
|
git push -f origin master:gh-pages
|
||
|
|
||
|
rm .gitignore
|
||
|
|
||
|
popd
|