总结:
- 之前生成的.ssh可以直接放入Windows系统user/Administrator中使用。
- 之前生成的.ssh可以直接放入Mac系统user/your_name中使用。
说明:生成的.ssh可以自行保留,等下次重装或换系统后,可按上述方式实现复用。以上2种方法亲测。
Mac系统要注意文件权限
以 /Users/ljheee/.ssh 为例:
1、.ssh文件夹权限是700。(chmod 700 .ssh)
2、id_rsa私钥文件的权限是0600。(chmod 0600 id_rsa)
完成上述步骤后,配置用户名和邮箱的命令
git config --global user.name "youname"
git config --global user.email "youeamil@email.com"
最后可以通过 git config -l 这个命令查看已配置的用户名和邮箱信息。