demo网页制作

1.创建一个空项目
2.上传编辑好的文件到本地服务器
3.申请一个token
在这里插入图片描述
4.本地项目夹下执行
git init
git add --all
git commit -m ‘first try’
git remote add origin https://github.com/username/reponame.git
git push -u origin master
这个时候需要输入用户名和密码,用户名是github_username,密码是之前申请的token
接下来切换分支
git branch gh-pages
git checkout gh-pages
git push -u origin gh-pages
同样需要输入用户名和密码,用户名是github_username,密码是之前申请的token
那么直接访问username.github.io/reponame/

点赞(0) 打赏

评论列表 共有 0 条评论

暂无评论

微信公众账号

微信扫一扫加关注

发表
评论
返回
顶部