git 多用户连接 gitee 和 github 一、通过邮箱生成公私钥(使用 git bash) ## git bash # 生成 gitee 的公私钥 ssh-keygen -t rsa -f ~/.ssh/id_rsa_gitee -C "youxiang@qq.com" # 生成 github 的公私钥 ssh-keygen -t rsa -f ~/.ssh/id_rsa_github -C "youxiang@qq.com" # 连按三下回车