玩轉Git三劍客——02. 安裝Git、03. 使用Git之前需要做的最小配置
阿新 • • 發佈:2019-01-12
學習視訊:玩轉Git三劍客(蘇玲 攜程程式碼平臺負責人)——極客時間 https://time.geekbang.org
一、安裝
1. 開啟Git中文官網:https://git-scm.com/book/zh/v2
2. 選擇“1.5 起步 - 安裝Git”,選擇相應的系統版本,下載安裝包並根據說明進行安裝
3. 驗證Git安裝成功:開啟終端,輸入“git --version”
注:視訊講解為“在Mac上安裝”
二、最小配置
1. 配置user資訊(必須,不配置的話,最後Git做變更提交時會出現提示資訊,提示需要做相關配置)
- git config [--local | --global
- git config [--local | --global | --system] user.email '[email protected]'
作用域區別:
- local:只對使用者當前工作倉庫有效(預設值)
- global:對當前使用者所有倉庫有效(常用)
- system:對系統所有登入的使用者有效(不常用)
注:優先順序為local > global > system
2. 顯示config的配置
git config --list [--local | --global | --system]
3. 清除unset
git config --unset [--local | --global | --system] user.name