git install/ Windows

https://git-scm.com/download/win
  • 安裝完成,打開「Git Bash」應用程式

    • 驗證 Git 是不是有安裝起來
which git

git --version
  • 看到類似的訊息,安裝成功
    • which git = > /mingw64/bin/git
    • git --version => git version 2.14.1.windows.1
  • git setup

git config --global user.name "Your Name"
git config --global user.email "[email protected]"
git config --global color.ui true

git config --global core.editor vi
或 git config --global core.editor gedit
  • Windows 平台對於換行字元的處理與 Unix/Mac 平台不同,會讓 Git 誤判成有修改,因此需要多以下設定:
git config --global core.autocrlf true
git config --global core.safecrlf true
  • 產生 SSH key:

ssh-keygen -t rsa -C "[email protected]"
  • Public SSH key。

用文字編輯器打開 “%homedrive%%homepath%.ssh\id_rsa.pub” 的內容
  • Github 開專案

    • Public SSH key 複製下來貼到 Github 帳號 -> Account Settings -> SSH Keys 裡
    • 可以 push 和 pull 下來

Reference:

results matching ""

    No results matching ""