gpt4 book ai didi

javascript - 以编程方式为存储库启用 Github Pages

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:54:34 25 4
gpt4 key购买 nike

有什么方法可以通过api启用Github页面吗?不请求页面构建,我的意思是初始启用该功能并指向一个分支。

最佳答案

您只需将内容推送到远程 git 存储库即可。
您必须区分用户页面 (username.github.io) 和项目页面 (username.github.io/projectname)

用户页面:

git clone https://github.com/username/username.github.io
cd username.github.io

echo "Hello World" > index.html

git add --all
git commit -m "Initial commit"
git push -u origin master

项目页面:

git clone https://github.com/user/repository.git
cd repository

git branch gh-pages
git checkout gh-pages
echo "Hello World" > index.html

git add --all
git commit -m "Initial commit"
git push -u origin gh-pages

关于javascript - 以编程方式为存储库启用 Github Pages,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48620366/

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