git-SourceTree版本管理功能很強(qiáng)大,本文主要講解git-SourceTree怎么創(chuàng)建用戶(hù)和更改賬戶(hù)用戶(hù)名和綁定郵箱。
1.創(chuàng)建用戶(hù)
2.克隆項(xiàng)目到本地
3.可能遇到的問(wèn)題
【1】這是一個(gè)無(wú)效的URL路徑或unable to access 'https://': SSL certificate problem: self signed certificate in c,這是由于不信任證書(shū)導(dǎo)致的
解決方法:在終端輸入:Git config --global http.sslVerify false并且去掉勾選下面的選項(xiàng)👇
【2】更改賬戶(hù)用戶(hù)名和綁定郵箱
git config --global user.name "xxUserNamexx"
git config --global user.email "xxUserEmailxx"