美文网首页
一台机器创建多个ssh-key

一台机器创建多个ssh-key

作者: running_sheep | 来源:发表于2020-09-16 16:51 被阅读0次

    工作台式机: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"

    即可

    相关文章

      网友评论

          本文标题:一台机器创建多个ssh-key

          本文链接:https://www.haomeiwen.com/subject/bclhyktx.html