时间:2023-08-02 22:30:01 | 来源:网站运营
时间:2023-08-02 22:30:01 来源:网站运营
通过GitHub免费构建个人网站:# 选用淘宝镜像下载npm install -g cnpm --registry=https://registry.npm.taobao.org #安装失败可多次尝试cnpmcnpm -v
3. 安装hexo-clicnpm install -g hexo-clihexo -vD:cd Iblogchdir## 必须先安装githexo init
4. 启动博客hexo s# INFO Hexo is running at http://localhost:4000/ . Press Ctrl+C to stop.
三:上传博客#新建博客hexo n "我的第一篇博客文章"cd source/_postsdircd ../../# 清理数据hexo clean# 生成hexohexo g# 重新启动hexo s
四:博客免费部署到github上去npm install hexo-deployer-git --save
2.使用UltraEdit打开"_config.yml",打开页面如下:# 提交账户git config --global user.email "smiles2011hyc@gmail.com"git config --global user.name "smiles2011hyc"hexo d
点击“sign in with your brower"git clone https://github.com/litten/hexo-theme-yilia.git themes/yiliacd themes/yiliadir
2.5. 修改_config.ymlhexo cleanhexo ghexo s# 推到远端即github中hexo d
关键词:免费,通过