创建只有gh-pages分支github仓库
欢迎访问新站点: https://www.yidiankuaile.com/post/github-gh-pages
有时项目只需要使用gh-pages分支,并不要master分支
创建 只有gh-pages分支
初始化
1 | git init |
创建 gh-pages 分支
1 | gitcheckout --orphan gh-pages |
添加文件至暂存区
1 | git add . |
提交
1 | git commit -m "first commit" |
添加远程地址
1 | git remote add origin git@github.com:username/project.git |
推送
1 | git push origin gh-pages |