在此處下載 git.2. 開啠 Git Bash
安裝過程中勾選預設選項即可.
3. 執行 Git Commands
執行 Git Commands, 檢查 git 是否安裝成功.4. 修改 Git Bash 啟動後所在的 working directory.
預設 Git Bash 啟動後會處於 home directory, 通常在 c drive (system drive). 但一般我們會把 projects 放在 d drive (data drive), 以免系統更新時 data 受到影響.5. 設定 git tab completion 及 bash command prompt for git
首先找到 Git Bash shortcut 的位置.
在 Git Bash shortcut 上按滑鼠右鍵, click "Properties".
在 "Start in:" 欄位中填入 working directory.
下載 git-completion.bash 至 home directory.6. 下載並安裝 text editor Notepad++
下載 git-prompt.sh 至 home directory.
把下面這一段 code 貼到 home directory 下的 .bash_profile
設定好 bash command prompt for git, 可以方便地看出目前的 branch 及目前的狀態, 以下圖而言, 因為檔案在 commit 之後做了修改, 因此在 master 旁邊出現了 * 號.
在此處下載 Notepad++.7. 設定 git editor 為 Notepad++
在 D:/Data/Develop 下建立 npp.sh, 內容如下.參考資料:
設定 git editor 為 Notepad++.
Udacity - How to Use Git and GitHub- Git Installation on Windows
Udacity - How to Use Git and GitHub- Setting Up Your Workspace on Windows