github静态网页
- blog github
文章下的 xumf 都要换成你的 github用户名
第一步:创建一个repository
xumf.github.io
改为你的github用户名.github.io
- Description(可以不填)添加备注
- 点击Create repository
第二步:上传index.html到刚刚创建的repository上
-
clone repository到本地,
$ git clone git@github.com:xumf/xumf.github.io.git
-
添加一个文件并编辑,
$ vim index.html
,编辑完成后:wq
,保存退出。 -
添加,上传index.html文件到github
$ git add index.html $ git commit index.html -m 'init' $ git push origin master
-
在浏览器打开https://xumf.github.io/,就能看到刚刚
index.html
的内容。