Git安装和基本设置(Windows)
2021-04-01 02:25
标签:下载 命令 first ssh follow .com 密钥 gen conf 1.Git下载地址 https://git-for-windows.github.io/ 2.下载完成后安装 自行百度 3.配置github的ssh密钥: 1)打开Git Bash查看电脑上是否已经存在SSH密钥; 输入 cd ~/.ssh 如上图显示无法找到该文件则要创建新的ssh key; 2)创建新ssh key: 输入 ssh-keygen -t rsa -C "your_email@youremail.com" 执行这条命令会如图提示文件保存路径,可以直接按Enter, 然后提示输入 passphrase(密码),输入两次(可以不输直接两次Enter) 在 .ssh 目录生产两个文件:id_rsa和id_rsa.pub 用记事本打开.ssh目录下的id_rsa.pub文件,复制里面的内容; 4.复制ssh key到github: 5.测试 ssh 链接 github: 输入 ssh -T git@github.com 出现successfully,完成。 6.配置本地信息: git config --global user.name "Firstname Lastname" git config --global user.email "your_email@youremail.com" 可输入 git config --list 查看自己的git信息 Git安装和基本设置(Windows) 标签:下载 命令 first ssh follow .com 密钥 gen conf 原文地址:https://www.cnblogs.com/ZYTZ/p/9246535.html
文章标题:Git安装和基本设置(Windows)
文章链接:http://soscw.com/index.php/essay/70728.html