github创建项目
创建仓库,项目名字要用
username.github.io
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 main
浏览器访问 https://username.github.io.
最后更新于
这有帮助吗?