作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
看起来很简单,我读了很多关于但我有问题要做。
git add .
git commit -m "documentation improvements"
git push -u origin master
git push -u origin gh-pages
error: src refspec gh-pages does not match any.
error: failed to push some refs to 'https://github.com/danielfpedro/simple-modal
.git'
最佳答案
this文档可能会有所帮助。 IE:
1)退出当前的repo并制作一个新的克隆:
cd ..
git clone https://github.com/danielfpedro/simple-modal.git simple-modal-webpage
2)创建一个 gh-pages 分支(没有任何父级)并从工作目录和索引中删除所有内容:
cd simple-modal-webpage
git checkout --orphan gh-pages
git rm -rf .
3)添加内容并推送
echo "My GitHub Page" > index.html
git add index.html
git commit -a -m "First pages commit"
git push origin gh-pages
在您推送到
gh-pages
之后分支,您的项目页面将位于
danielfpedro.github.io/simple-modal
4)删除克隆的文件夹(
simple-modal-webpage
)并拉动分支
gh-pages
在原始 repo (
simple-modal
)中:
cd ..
rm -r simple-modal-webpage
cd simple-modal
git fetch --all
git checkout -b gh-pages origin/gh-pages #New git just use --> git checkout gh-pages
5) 就是这样,现在你还有 1 个分支
gh-pages
.使用它来提交 github 网页的更改:
git checkout gh-pages
<made changes to documentation>
git add .
git commit -m "documentation improvements"
git push -u origin gh-pages
关于github - 如何在 Github 上发布页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23145621/
我是一名优秀的程序员,十分优秀!