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
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