git生成公钥私钥(windows)

 

配置用户名和邮箱

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

会在当前用户的目录下(C:\Users\v_sunhaojie)生成   .gitconfig文件

[user]
    name = v_sunhaojie
    email = [email protected]

在用户目录的.ssh目录下执行  ssh-keygen -t rsa

会在.shh目录下生成公钥和私钥,

 

你可能感兴趣的:(git)