红联Linux门户
Linux帮助

git解决本地多个key-ssh问题

发布时间:2016-06-15 11:02:56来源:linux网站作者:姚欣炜

第一步、配置用户名和邮箱

git config --global user.name "用户名"
git config --global user.email "邮箱"


第二步、生成SSH-Key的同时指定保存的文件名

ssh-keygen -t rsa -f ~/.ssh/id_rsa.oschina -C "email"


第三步、新增并配置config文件

touch ~/.ssh/config


贴上我的配置:

git解决本地多个key-ssh问题


本文永久更新地址:http://www.linuxdiyf.com/linux/21536.html