1. 程式人生 > >2.Git基本配置

2.Git基本配置

 

 使用者名稱和郵箱地址是本地git客戶端的一個變數 . 使用者每次提交程式碼都會記錄使用者名稱和郵箱 .

設定git的使用者和郵箱
git config [--local | --global | --system] user.name 'Your name'   注意這裡user.name後邊是空格,不是等號=。
git config [--local | --global | --system] user.email 'Your email'

## 檢視配置

git config --list [--local | --global | --system]

## 區別

local:區域為本倉庫
global: 當前使用者的所有倉庫
system: 本系統的所有使用者