本文使用“署名-非商业性使用-相同方式共享 4.0 国际(CC BY-NC-SA 4.0)”进行许可。
商业转载请联系站长获得授权,非商业转载请注明本文出处及文章链接。 如果您再混合、转换或者基于本作品进行创作,您必须基于相同的协议分发您贡献的作品。
使用 Vercel 免费部署 hexo 静态博客
# 新建git仓库
git init
git add .
git commit -m "first commit"
git branch -M main
# 连接到github,例子:https://github.com/<用户名>/<仓库名>.git
git remote add origin <你的远程仓库地址>
# 设置储存账号密码,去掉 --global 参数可以只对当前参数保存
git config --global credential.helper store
git push -u origin main
# 会要求输入账号密码,注意密码是之前生成的Personal access token,而不是 github 账户的密码
git add .
, git commit
, git push
后 vercel 会自动更新git clone
和 git submodule add
各有优劣,可以了解后自行选择git clone -b master https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
# 或者
git submodule add https://github.com/jerryc127/hexo-theme-butterfly.git themes/butterfly
hexo new
的文件,会发现即使有特殊字符,也会在文件名里被自动去掉(Front-matter 中不受影响),所以可以大胆使用特殊字符本文使用“署名-非商业性使用-相同方式共享 4.0 国际(CC BY-NC-SA 4.0)”进行许可。
商业转载请联系站长获得授权,非商业转载请注明本文出处及文章链接。 如果您再混合、转换或者基于本作品进行创作,您必须基于相同的协议分发您贡献的作品。