微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

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

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐