Mac git 的使用
1. mac 安装git
brew install git
2.初使化
git config --global user.name "mygit" git config --global user.email "mygit@gmail.com"
3.生成密钥
ssh-keygen -t rsa -C "mygit@gmail.com"
#一路回车即可
4.查看id_rsa.pub
本文来自博客园,作者:三百里江山,转载请注明原文链接:https://www.cnblogs.com/300js/p/9432929.html