配置用户名和邮箱:
$ git config --global user.name "your_name" $ git config --global user.email "your_email@example.com"
$ git config --global user.name "your_name"
$ git config --global user.email "your_email@example.com"
生成密钥对:
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"