https://help.launchpad.net/YourAccount/CreatingAnSSHKeyPair Creating the key How you create your SSH key pair depends on which operating system you use. If the instructions for your operating system are not here, get in touch to request them or, if y…
参考:https://www.cnblogs.com/achengmu/p/6095046.html 1.首先你要安装Git工具 2.运行Git Bash here 3.输入指令,进入.ssh文件夹 cd ~/.ssh/ 如果提示 “ No such file or directory”,你可以手动的创建一个 .ssh文件夹即可 mkdir ~/.ssh 4.配置全局的name和email,这里是的你github或者bitbucket的name和email git config --global…
1 打开 Git Bash $ 2 输入 dir, 确认当前文件夹,并切换到想存密钥文件即pub文件的路径 $ dir 3 生成 密钥命令 ssh-keygen -t rsa -C "{ your email}" 4 按提示输入密钥文件名 和 密码(需输2次) Enter file in which to save the key( /c/Users/{your pc name}/.ssh/id_sa):Enter passphrase (empty for no passphrase…