Git安装
程序员文章站
2024-01-28 16:49:28
...
1.官网下载速度慢
https://npm.taobao.org/mirrors/git-for-windows/ 安装最新的
2.启动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
//之后连按三次回车
如图
2.在github上配置
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了
上一篇: java学习笔记( 一)