Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #320 from cironunes/gh-pages-fix
fix gh-pages to stash and don't delete files.
  • Loading branch information
hemanth committed Mar 3, 2015
2 parents 30ac2ae + c1b0067 commit 475124a
Showing 1 changed file with 18 additions and 9 deletions.
27 changes: 18 additions & 9 deletions bin/git-gh-pages
@@ -1,12 +1,21 @@
#!/usr/bin/env bash

echo 'setting up gh-pages'
git symbolic-ref HEAD refs/heads/gh-pages \
&& rm .git/index \
&& git clean -fdx \
&& echo 'My Page' > index.html \
&& git add . \
&& git commit -a -m 'Initial commit' \
&& git push -u origin gh-pages \
&& git fetch origin \
&& echo 'complete'
echo '-------------------'

echo 'Tell me your github account username: '
read username

echo 'Now, tell me your repository name: '
read repository

git stash \
&& git checkout -b 'gh-pages' \
&& echo 'My Page' > index.html \
&& git add . \
&& git commit -a -m 'Initial commit' \
&& git remote add origin https://github.com/"$username"/"$repository".git \
&& git push -u origin gh-pages \
&& echo 'Complete' \
&& echo '-------------------' \
&& echo 'You can find your last changes in the stash!'

0 comments on commit 475124a

Please sign in to comment.