github在线演示自己的项目github.io

github 使用记录

1. 网页端create a new repository

2. 

git init
git config --global user.name "abc"
or
git config --global user.email "abc@gmail.com"
git commit -m "first commit"

3.github上的远程仓库clone到本地 git clone http://*****.git

4.在文件上传文件

5.git branch 可以使用当前的main分支,也可以新建分支 git checkout --orphan v1.0

6. 

git add .
git commit -m "web demo"
git push -u origin v1.0

7. 如果想展示自己的项目,就要用到github.io。此时需要将仓库名字setting->rename成username.github.io。在网址输入https://username.github.io/abcdefg.html即可打开演示。

8. 给文件改名 

git mv oldname newname
git commit -m "rename files"
git push origin v1.0

 

相关文章

developer-roadmap —— 提供最全的开发者技术路线指南。前端...
一个极简的文件分享工具,无需注册且没有广告即可生成共享下...
收集 Github、Gitee优秀的开源项目,并进行归类整理。项目地...
大家好,我是 Java陈序员,我们有时会搭建一个属于自己的网站...
一个提供交互式的Web UI用于生成兼容MyBatisPlus框架的相关功...
大家好,我是 Java 陈序员。权限认证是我们日常开发绕不过的...