A intenção desta dica é mostrar como enviar por push apenas o branch gh-pages no GitHub. Esta é uma causa útil com o branch gh-pages do GitHub que hospeda um site estático.
git init
git add .
git commit -m "First inclusion of files"
git branch -m master gh-pages
git remote add origin git@github.com:<USER>/<REPOSITORY>.git
git push origin gh-pages
O truque é git branch -m
depois git commit
, -m
no git branch
comando alterar o nome do branch. Você pode verificar isso com git status
e apertar.
Note em git push
após o comando origin
é gh-pages
do ramo.