git-SourceTree版本管理功能很强大,本文主要讲解git-SourceTree怎么创建用户和更改账户用户名和绑定邮箱。
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"