1.安裝git
直接到官網下載安裝,除了 Mac/Windows 使用安裝檔(dmg/exe),其他的都用指令安裝
2.測試git
開啓終端機,輸入
git
順利的話會得到類似以下畫面的回應,代表已經安裝完成
來看看目前版本,輸入
git --version
會顯示安裝版本
3.設定個人訊息
在提交檔案之前先來設定 個人訊息 的配置,包含名字和E-mail
輸入
git config user.name "your_name" git config user.email "your_email"
如果出現
error: could not lock config file .git/config: No such file or directory
請加入 –global
git config --global user.name "your_name" git config --global user.email "your_email"
之後提交檔案都會使用這組個人訊息,當然想重新設定也是沒問題
可以使用 git config –list 來查看個人訊息
想要查詢指令如何使用,輸入
git help 指令
git help config