Lidong's blog

创建只有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

参考

在github上建立gh-pages分支

本文链接:


评论内容还在加载中。。。
如无法加载,请将域名 disqus.com 和 disquscdn.com 加入到你的代理规则中