hexo 搭建部落格常用命令

藏狐發表於2020-11-08

#常用命令
經常更新

git config --global user.name "yourgithubname"
git config --global user.email "yourgithubemail"
ssh-keygen -t rsa -C "youremail"
#生成後填到github和coding上(有coding平臺的話)
#驗證是否成功
ssh -T git@github.com
ssh -T git@git.coding.net #(有coding平臺的話)
sudo apt-get install nodejs
sudo apt-get install npm
sudo npm install hexo-cli -g
git clone git@………………
cd xxx.github.io
npm install
npm install hexo-deployer-git --save
hexo g
hexo d
hexo d -g #g 和d連用
hexo new newpage
git add .
git commit –m "add branch"
git push
#已經有編輯的只需pull即可
git pull

相關文章