$ git config --global user.name "yourname"
$ git config --global user.email "youremail"
配置ssh $ ssh-keygen -t rsa -C "youremail"
$ eval `ssh-agent -s` 执行agent后才可add
$ ssh-add
ssh连接出现The authenticity of host can't be established: 原因 Permanently added '172.16.9.10' (RSA) to the list of known hosts.
解决方法:ssh -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
相关文章
- 02-23git alias和gitconfig配置
- 02-23Qt5配置OpenCV之问题总结
- 02-232、Automapper安装及配置
- 02-23咱就入个门之NHibernate映射文件配置(二)
- 02-23git 本地新建分支Push到远程
- 02-23自动化框架——PO设计模式自学——参数化配置——tdd数据驱动——列表里面嵌套列表
- 02-23Git本地分支版本号过低导致的push错误 error: failed to push some refs to ... 及兴许amend
- 02-23Git的配置及常用命令
- 02-23windows下安装配置Django虚拟环境
- 02-2303、了解自动配置原理