Git 學習筆記Aug 2, 2016# git編輯基本設定 12345678# 設定預設編輯器為 vim# git config --system core.editor <editor>git config --system core.editor vim# 設定預設編輯器為 sublimegit config --global core.editor "subl -n -w"# 或# 直接編輯 global configgit config --global --edit 指令 alias 123# 加一些常用的 git-command alias# git config --global alias.<alias-name> <git-command>git config --global alias.st status Ref: Git tutorials...MORE
利用 Github + Hexo 來建 blogJul 28, 2016# hexo# github1. 安裝 Github Desktop優點 在 Windows 環境下使用 可以自動建立 SSH Keys 裝純粹 Git 的話需要自己手動建立 SSH Key...MORE