Git 安裝(window)

lwx434697發表於2018-12-28

官網下載(git-scm.com/)

安裝完成 檢驗  git --version  

全域性設定 使用者名稱  郵箱

git config --global user.name  "Your Name"

git config --global user.email "Your Email"

注意git config命令的--global引數,用了這個引數,表示你這臺機器上所有的Git倉庫都會使用這個配置,當然也可以對某個倉庫指定不同的使用者名稱和Email地址。


相關文章