1.Git安裝及初始化

安裝git

能夠登陸git官網下載安裝
Git 官方文檔地址:
https://git-scm.com/book/zh/v2
macOS 平臺 Git 下載地址:
https://git-scm.com/download/mac
Windows 平臺 Git 下載地址:
https://git-scm.com/download/win
Linux 平臺 Git 下載地址:
https://git-scm.com/download/linux
檢查安裝結果:下載好以後按照提示進行安裝,安裝完畢後在終端使用git --version命令,看是否返回 git 的版本linux

最小配置

安裝好git後須要進行最小配置(設置用戶名和郵箱)才能夠正常使用git
配置user.name和user.email
git config --global user.name 'your_name'
$ git config --global user.email 'your_email@domain.com'git

config 的三個做⽤域

config默認參數爲local
git config --local(只對當前倉庫有效,且須要在倉庫目錄下進行設置)
git config --global(global對登陸⽤戶全部倉庫有效(經常使用))
git config --system(對系統的全部⽤戶有效)
顯示 config 的配置:加 --list,例如git config --list --local
清除 config 的配置:加 --unset,例如git config --unset --local user.name
優先級:local > global > system(如在global配置中包含A倉庫,而且A倉庫配置了local,則相關操做會使用local配置的信息執行)dom

相關文章
相關標籤/搜索