Github Page
创建仓库
在GitHub中创建一个GithubPage仓库,其仓库名为:username.github.io
username 为你在Github中的用户名,必须严格按照这个规范命名。
例如你的用户名为:batman,那么你的仓库命名应该为 batman.github.io
为仓库添加一个 README.md 文件
刚刚创建完,是一个空仓库这时候页面应该有一下提示
使用客户端快速启动
Quick setup — if you’ve done this kind of thing before or
We recommend every repository include a README, LICENSE, and .gitignore.
使用命令行初始化一个仓库并提交
…or create a new repository on the command line
echo "# batman.github.io" >> README.md
git init
git add README.md
git commit -m "first commit"
git remote add origin https://github.com/batman/batman.github.io.git
git push -u origin master
使用原有的仓库代码迁移
…or push an existing repository from the command line
git remote add origin https://github.com/batman/batman.github.io.git
git push -u origin master
因为我们创建了一个空仓库,所以需要使用第二种方法,使用命令行初始化一个仓库并提交
- 在桌面创建文件夹,文件夹名称 batman.github.io
cd ~/Desktop && mkdir batman.github.io
- 进入文件夹创建 README.md 文件
cd batman.github.io && touch README.md
- 编辑 README.md 文件
# Hello world ,I am batman !
- 执行一下代码完成代码提交
git init
git add .
git commit -m "first commit"
git remote add origin https://github.com/batman/batman.github.io.git
git push -u origin master
注意,以上我们使用 batman.github.io.git 为实例,实际操作请将 batman 替换为你的用户名。
- 完成了,这时候可以用浏览器打开
https:///batman.github.io