This file contains 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
### Creating a clean gh-pages branch | |
This is the sequence of steps to follow to create a root `gh-pages` branch. It is based on a question at [SO] | |
``` {shell} | |
git symbolic-ref HEAD refs/heads/gh-pages | |
rm .git/index | |
git clean -fdx | |
echo "apiVersion: v1 | |
entries:" > index.yaml |