使用GitHub Pages搭建自己的博客

前提条件:拥有GitHub账号

1.用Command line工具创建仓库username.github.io(命名规则一定要遵守,Github用户名一定要正确)

输入以下内容(有输入GitHub用户名和密码步骤)

echo "# username.github.io" >> README.md

git init

git add README.md

git commit -m "first commit"

git remote add origin https://github.com/username/username.github.io.git

git push -u origin master

2.用Command line工具克隆仓库到本地

git clone https://github.com/username/username.github.io

3.用Command line工具进入项目并添加index.html文件,然后add、commit、push操作

cd username.github.io

echo "Hello World" > index.html

git add --all

git commit -m "Initial commit"

git push -u origin master

4.然后用浏览器打开http://username.github.io验证是否搭建成功

参考资料:https://pages.github.com/

你可能感兴趣的:(使用GitHub Pages搭建自己的博客)