我已阅读指南,它告诉您执行以下操作:
- 创建一个 .github.com 存储库
- 检查出来
path/to/repo
- cd /path/to/repo
- git symbolic-ref HEAD refs/heads/gh-pages
- rm .git/索引
- git clean -fdx
- 回显“我的 GitHub 页面”> index.html
- 混帐添加。
- git commit -a -m "首页提交"
- git push origin gh-pages
我已经做到了。页面出现了。然后我转移到另一台计算机并再次检查了存储库。现在我master
在本地有一个 " " 分支,但没有 " gh-pages
." 按照上面的步骤 3-6,我在该分支中没有文件。如何从“ master
”获取文件到将发布到 GitHub 的分支中?
我试过git checkout master && git push origin gh-pages
了,但这会产生
error: src refspec gh-pages does not match any.
fatal: The remote end hung up unexpectedly
error: failed to push to 'git@github.com:<me>/<me>.github.com.git'