Git 的下载与安装
1、 下载git :https://git.scm.com
2、 配置git,进入git bash(配置作者信息)
#配置用户名 git config --global user.name “username” //名字 #配置邮箱 git config --global user.email “username@email.com” //注册账号时用的邮箱 |
3、 配置ssh免密登录
https://gitee.com/help/articles/4181#article-header0
进入git bash,使用 : ssh-keygen -t rsa -C “xxxxx@xxxxx.com”命令。连续三次回车 一般用户目录下会有 Id_rsa Id_rsa.pub
或者 cat ~/.ssh/id_rsa.pub(查看完整的秘钥内容) 登录进入gitee,在设置里面找到SSH KEY将.pub文件中的内容(秘钥内容)粘贴进去 使用命令 : ssh -T git@gitee.com 测试是否成功即可 |
一个小小后端的爬行痕迹