欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Git安装

程序员文章站 2024-01-28 16:49:28
...

1.官网下载速度慢

https://npm.taobao.org/mirrors/git-for-windows/   安装最新的Git安装

Git安装

2.启动git 

Git安装

打开git bash,弹出命令框,安装成功。

3.环境配置

 

1.GitHub官网上注册一个账号,注册好后,打开Git Bash

//配置用户名
git config --global user.name "username"    //( "username"是github账户名)
//配置邮箱
git config --global user.email "aaa@qq.com"     //("aaa@qq.com"注册账号时用的邮箱)
//完成后校验
git config --global --list    //如果信息一致就OK
//生成SSH
ssh-****** -t rsa
//之后连按三次回车

如图

Git安装

2.在github上配置

Git安装

Git安装

3.测试配置是否成功

ssh -T aaa@qq.com

如果出现(hi,***! You`ve successfully authenticated, butGithub does not provide shell access)就已经成功了

tip:如果遇到(The authenticity of host **** can`t be established)就键入yes回车就OK了

 

相关标签: 平时 git github