Hexo博客多终端同步 发表于 2017-07-01 | 分类于 Web , Hexo | 阅读次数 | 字数统计 311 | 阅读时长 1push本地文件夹到github上的hexo分支上1234567git init //初始化本地仓库git add source //将必要的文件依次添加git commit -m "Blog Source Hexo"git branch hexo //新建hexo分支git checkout hexo //切换到hexo分支上git remote add origin git@github.com:yourname/yourname.github.io.git //将本地与Github项目对接git push origin hexo //push到Github项目的hexo分支上完成clone和push更新12345678git clone -b hexo git@github.com:yourname/yourname.github.io.git //将Github中hexo分支clone到本地cd yourname.github.io //切换到刚刚clone的文件夹内npm install //注意,这里一定要切换到刚刚clone的文件夹内执行,安装必要的所需组件,不用再inithexo new post "new blog name" //新建一个.md文件,并编辑完成自己的博客内容git add source //经测试每次只要更新sorcerer中的文件到Github中即可,因为只是新建了一篇新博客git commit -m "XX"git push origin hexo //更新分支hexo d -g //push更新完分支之后将自己写的博客对接到自己搭的博客网站上,同时同步了Github中的master不同终端切换123456git pull origin hexo //先pull完成本地与远端的融合hexo new post " new blog name"git add sourcegit commit -m "XX"git push origin hexohexo d -g坚持原创技术分享,您的支持将鼓励我继续创作!赏微信打赏支付宝打赏