1.首先在官网下载 https://git-scm.com/download/mac
2.然后安装git
3设置Git的user name和email:
$ git config --global user.name "xxxxx"
$ git config --global user.email "[email protected]"
4.生成SSH密钥过程:
1>输入命令: cd ~/.ssh
2>有上面文件夹则备份删除,我们创建新的密匙
$ ssh-keygen -t rsa -C “[email protected]”
最后得到了两个文件:id_rsa和id_rsa.pub
3.添加密钥到ssh:ssh-add id_rsa
4.在github上添加ssh公匙,“id_rsa.pub”里面的公钥。
5安装source tree客户端
https://downloads.atlassian.com/software/sourcetree/SourceTree_2.3.2.zip
时间: 2024-11-06 18:22:49