mac git生成ssh

终端:cd ~/.ssh 进入到.ssh目录下
//生成ssh key(你的邮箱)
$ ssh-keygen -t rsa -c [email protected]
//回车后(输入密码)
1 Generating public/private rsa key pair.
2 Enter file in which to save the key (/User/lianghongna/.ssh/id_rsa) (存储名)
3 Enter passphrase (empty for no passphrase):
4 Enter same passphrase again:

image.png

github的ssh配置如下:
一、在终端中设置git的user name 和 email:

git config -- global user.name "hanna"
git config --global user.email "[email protected]"

下面指令可以进入当前用户目录,~在终端中是指当前用户的目录,即/users/你的用户名,这样一个目录。(用户的文件基本上都是用该目录下,包括下载,桌面等目录。)

cd ~

执行下面指令查看当前目录

pwd

执行如下命令,能查看是否配置成功:

cat .gitconfig

你可能感兴趣的:(mac git生成ssh)