一、生成SSH Key 初始化 git config --global user.name "名称或昵称" git config --global user.email "你的邮箱" 生成SSH Key ssh-keygen -t rsa -C "youremail@example.com" 二、获取KEY 后面的   your_email@youremail.com  改为你在 Github 上注册的邮箱,之后会要求确认路径和...