gitHub添加公钥 gitHub是通过SSH公钥连接到现有仓库的 设置SSH Key ssh-keygen -t rsa -C "your_email@example.com"Generating public/private rsa key pair.Enter file in which to save the key (/Users/mouMiFan/.ssh/id_rsa): //Enter 回车Enter passphrase (empty for no passphras…
下载git安装 ->https://git-scm.com/downloads 新建git目录 在目录下右键选择Git Bash Here 执行 git init 拷贝项目到git目录下 在git里生成公钥文件 ssh-keygen -t rsa -C 你的github所用的邮箱 直接回车里面有生成.ssh目录生成如下 Your identification has been saved in /c/Users/Administrator/.ssh/id_rsa.-------(在这里)You…