gpt4 book ai didi

github - 如何在 Github 上发布页面?

转载 作者:行者123 更新时间:2023-12-04 11:52:26 27 4
gpt4 key购买 nike

看起来很简单,我读了很多关于但我有问题要做。

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-modal4)删除克隆的文件夹( 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/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com