设置Git的全局user name和email
$ git config --global user.name "username"
$ git config --global user.email "useremail"
生成SSH密钥
$ ssh-keygen -t rsa -C “youremail”
设置Git的全局user name和email
$ git config --global user.name "username"
$ git config --global user.email "useremail"
生成SSH密钥
$ ssh-keygen -t rsa -C “youremail”