1、Git 全局设置
$ git config --global user.name "anonymous" $ git config --global user.email "anonymous@example.com"
其中name和email替换成你自己的
2、配置sshkey
$ ssh-keygen -t rsa -C "anonymous@example.com"
其中,将 "anonymous@example.com" 替换为你的邮箱地址,然后一直回车到结束就可以了!
收藏用户