0
我創建使用傑基爾一個網站,按照這裏說明:Git的更新只有
然後按照這些說明:
curl -u 'username' https://api.github.com/user/repos -d '{"name":"username.github.io"}'
# If you have not yet cloned the repository, do it here, and enter the directory
git clone [email protected]:username/username.github.io.git
cd username.github.io
git remote add github [email protected]:username/username.github.io.git
git push -u github master
然後我做出改變本地和推動它與git使用「git push origin master」。然而,它就會被更新沙箱:
username.github.io.jekyll.teddyhyde.com
但不是
username.github.io
這是爲什麼?
完美!謝謝。 – Rohit