This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
# | |
# Run this in a repo checked out from github | |
#create gh-pages branch | |
git checkout --orphan gh-pages | |
git reset | |
echo "My new site" >> index.html | |
git add index.html | |
git commit --allow-empty -m "Initial commit gh-pages" |
NewerOlder