This is the process given to create a branch for GitHub Project Pages:
cd /path/to/repo-name
git symbolic-ref HEAD refs/heads/gh-pages
rm .git/index
git clean -fdx
echo "My GitHub Page" > index.html
git add .
git commit -a -m "First pages commit"
git push origin gh-pages
It states that git symbolic-ref HEAD refs/heads/gh-pages
will create a new root branch. I'm wondering what the difference between a root branch and a regular branch is.