1.創建用戶


2.克隆項目到本地

3.可能遇到的問題
【1】這是一個無效的URL路徑或unable to access 'https://': SSL certificate problem: self signed certificate in c,這是由於不信任證書導致的
解決方法:在終端輸入:Git config --global http.sslVerify false並且去掉勾選下面的選項👇

【2】更改賬戶用戶名和綁定郵箱
git config --global user.name "xxUserNamexx"
git config --global user.email "xxUserEmailxx"
