美文网首页
macOS sshkey配置git

macOS sshkey配置git

作者: Flora_HAHA | 来源:发表于2021-04-12 13:23 被阅读0次

    生成sshkey的方法:

    1 :打开终端 输入   

    $ ssh-keygen

    连敲三次回车,生成的SSH key文件保存在中~/.ssh/id_rsa.pub(公钥)

    2  : 打开该文件:

    $ vim ~/.ssh/id_rsa.pub

    将.pub中的填到git账户

    原文:
    https://www.jianshu.com/p/253ca7c2e80c

    1.检查是否已经存在SSH keys

    打开终端,输入命令

    $ ls -al ~/.ssh

    如果已存在,则结果会列出目录文件列表,则进入第3步。

    .      ..      id_rsa      id_rsa.pub

    如果不存在,则结果如下,则进入第2步。

    # ls: /Users/hony/.ssh: No such file or directory

    2.生成SSH Keys

    在终端中输入以下命令,其中邮箱填写你的邮箱地址

    $ ssh-keygen -t rsa -b 4096 -C "*your_email@example.com*"

    # Generating public/private rsa key pair.

    在接下来的步骤中,按回车键:

    Enter file in which to save the key (/Users/hony/.ssh/id_rsa):

    再次回车

    Enter passphrase (empty for no passphrase):

    Enter same passphrase again:

    结果看到这个图形,就可以了

    +---[RSA 4096]----+

    |  o      .      |

    |.o + o  +      |

    |o o + o * .      |

    |.. o.o + =      |

    |.o.o .+ S        |

    |  + =+ X .      |

    |.o oEoO B .      |

    |o.o o+ B o      |

    |..o+. + .        |

    +----[SHA256]-----+

    3.添加 SSH key 到 ssh-agent

    1.确保ssh-agent是可用的

    $ eval "$(ssh-agent -s)"

    # Agent pid 2806

    2.添加SSH key 到 ssh-agent

    # id_rsa是SSH key对应的文件的名字,如果要使用一个已经存在的key添加到ssh-agent的话,替换id_rsa名字即可

    $ ssh-add ~/.ssh/id_rsa

    # Identity added: ...

    4.把 SSH key 添加到远程仓库的账号上

    1.复制 SSH key 到粘贴板

    $ pbcopy < ~/.ssh/id_rsa.pub

    2.登录github或bitbucket等远程仓库添加SSH key即可。

    相关文章

      网友评论

          本文标题:macOS sshkey配置git

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