部署hugo静态网站至github pages # 部署hugo的静态网页至github # 第一步:编译静态页面 1 2 3 #编译静态网站 hugo #hugo --baseUrl="https://www.hackctf.com/" # 第二步:上传github 1 2 3 4 5 6 7 cd public git init git remote add origin https://github.com/tanandhe/tanandhe.github.io.git git add -A git commit -m "First commit" git push -u origin master #第一次提交时需要认证 #git push -f -u origin master //可以强行覆盖