标签:配置 验证 ssh code touch 全局 lan key google
user.name
和user.email
:
git config --global --list
git config --global --unset user.name "你的名字"
git config --global --unset user.email "你的邮箱"
ssh-keygen -t rsa -f ~/.ssh/id_rsa.github -C "abc@qq.com"
ssh-keygen -t rsa -f ~/.ssh/id_rsa.gitlab -C "abcdef@qq.com"
cat id_rsa.github.pub
cat id_rsa.gitlab.pub
cd ~/.ssh && touch config
vim config
# github
Host github.com
HostName github.com
User GaiheiluKamei
IdentityFile ~/.ssh/id_rsa.github
# gitlab
Host gitlab.google.com ## 公司提供的网址
HostName gitlab.google.com ## 同上
User git
IdentityFile ~/.ssh/id_rsa.gitlab
Port 2223 ## 公司提供的端口
ssh -T git@github.com
ssh -T gitlab.google.com
标签:配置 验证 ssh code touch 全局 lan key google
原文地址:https://www.cnblogs.com/GaiHeiluKamei/p/13802458.html