🌑

Hi there!

hexo 備份

本文參考 :
Hexo備份至GitHub
30 天精通 Git 版本控管 (25):使用 GitHub 遠端儲存庫 - 觀念篇


步驟

git init
# 建立新分支 'hexo' 並切換至 'hexo' 分支  
git checkout -b hexo
git add .
git commit -m 'init'
git remote add origin https://github.com/aleetsaiya/aleetsaiya.github.io
git push -u origin hexo

這邊 git push -u origin hexo 設定 -u 的話,我們之後要 push 或是 pull 時就不用加後面的 origin hexo 了,只要打 :

git pull
git push

更多詳細的內容可以至參考文章看。

— Jul 11, 2021