$ git branch -a * gh-pages remotes/origin/HEAD -> origin/gh-pages remotes/origin/gh-pagesOf course a solution for this way to work is to rename your master branch:
$ git branch -m master gh-pages [~/Downloads/tmp(gh-pages)]$ git branch * gh-pages
Otherwise, you can do your initial push this way:
$ git push -u origin master:gh-pagesOption
-u
: for every branch that is up to date or successfully pushed, add
upstream
(tracking) reference, used by argument-less git-pull
.
index.html
poner una línea como una de estas:
<link rel="shortcut icon" href="etsiiull.png" type="image/x-icon"> <link rel="shortcut icon" href="logo.png" /> <link href="images/favicon.ico" rel="icon" type="image/x-icon" />
Casiano Rodríguez León