1. 配置用户名
git config --global user.name "用户名"
2. 配置邮箱
git config --global user.email "邮箱地址"
3.检查配置
git config -l
4. 生成公私钥对
ssh-keygen -t rsa -C "邮箱地址" -f "文件地址"
5.把专用密钥添加到 ssh-agent 的高速缓存中
ssh-add ~/.ssh/id_dsa
6.如果执行ssh-add 时出现Could not open a connection to your authentication agent,执行如下命令
ssh-agent bash
7. clone or init
git clone "地址"
git init