制作gh-pages在线预览效果

1、git初始化

git  init

2、在指定文件夹里创建gh-pages分支

git checkout --orphan gh-pages

3、添加文件到暂存区

git add .

4、添加信息

git commit -m "init project"

5、推送项目到gh-pages分支

git push origin gh-pages

输入github账户名和密码就ok了

展示地址

Github用户名.github.io/创建的仓库名(多个静态页面可切换,直接后面指定文件名就好了

你可能感兴趣的:(制作gh-pages在线预览效果)