一台机器创建多个ssh-key

2020-09-16  本文已影响0人  running_sheep

工作台式机:TaiPC
本机上已经配置过工作的ssh-key访问公司的代码库,现在需要再配一个ssh-key访问自己github上的仓库。

1.ssh-keygen -t rsa -C"xxxx@163.com"

image.png

2.mv id_rsa_github* ~/.ssh

3.将~/.ssh/id_rsa_github.pub添加到github的ssh-key中

4.创建并克隆仓库
git clone https://github.com/mengmayang/runningsheep-raft.git

5.查看当前仓库配置
git config --local -l

6.给当前仓库新配置
git config --local user.name "xxxx"
git config --local user.email "xxxx@163.com"

即可

上一篇下一篇

猜你喜欢

热点阅读