当前位置:  开发笔记 > 前端 > 正文

如何在Github上发布页面?

如何解决《如何在Github上发布页面?》经验,为你挑选了1个好方法。

看起来很简单,我正在阅读很多,但我有问题要做.

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'

我错过了什么?



1> suhailvs..:

这个文档可能有帮助.即:

1)退出当前的回购并制作一个新的克隆:

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

git add .
git commit -m "documentation improvements"
git push -u origin gh-pages

推荐阅读
周扒pi
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有