一、下載:登錄Git官方網站下載Git軟件:http://git-scm.comjavascript
根據本身的系統選擇相應版本:java
二、安裝:下載好以後,雙擊開始安裝git
這裏說明一下部分組件的意思windows
(1)Additional icons --勾選後會在桌面建立Git圖標
(2)Windows Explorer integration --windows資源管理器集成,就是在點擊鼠標右鍵時會出現相應的Git選項
(3)Associate .git* configuration files with the default text editor --Git默認的文本編輯器 --這裏應該是Vim編輯器
(4)Associate .sh files to be run with Bash --.sh 運行bash
(5)use a trueType font in all console windows --在全部的控制檯窗口使用TrueType字體bash
其實徹底能夠默認,一路next。編輯器
三、安裝完成,打開你的Git字體
輸入第一個命令,查看Git版本網站
git --version
四、配置你的信息code
每一個git用戶都須要一個userName和Email地址,用來辨別身份ip
$ git config --global user.name "Your Name" $ git config --global user.email "email@example.com"
注意git config
命令的--global
參數,用了這個參數,表示你這臺機器上全部的Git倉庫都會使用這個配置,固然也能夠對某個倉庫指定不一樣的用戶名和Email地址。