当前位置:   article > 正文

windows10 上 git 配置 github 和 gitee

windows10 上 git 配置 github 和 gitee

windows10 上 git 配置 github 和 gitee

  1. git下载及配置
    下载:https://git-scm.com/downloads
    推荐使用国内镜像加速:https://mirrors.tuna.tsinghua.edu.cn/github-release/git-for-windows/git/
    安装直接下一步就好。。。。
    配置:(https://git-scm.com/book/en/v2/Customizing-Git-Git-Configuration)

    $ git config --global user.name "你的名称"
    $ git config --global user.email 邮箱号
    
    • 1
    • 2
  2. 生成 github 和 gitee 的 SSH key

    a. 打开 git Bash,运行下面的命令,过程中直接按 Enter 就行

    $ ssh-keygen -t rsa -C 'github邮箱号' -f ~/.ssh/id_rsa_github
    $ ssh-keygen -t rsa -C 'gitee邮箱号' -f ~/.ssh/id_rsa_gitee
    
    • 1
    • 2

    b. 这时会在你的用户家目录(W:C:\Users/windows账户名.ssh,L/M:~/.ssh)下生成以下文件:
    01

  3. 分别登录githubgitee添加SSH KEY(下面以gitee为例)

    进入个人的设置目录:
    02
    需要注意的是,公钥一栏复制的时上述生成文件中的.pub文件的内容,即:id_rsa_gitee.pub

  4. 配置config文件
    进入.ssh目录下,新建config文件

    $ cd ~/.ssh
    $ touch config
    $ vim config
    
    • 1
    • 2
    • 3

    输入以下内容:

    # gitee
    Host gitee.com
    HostName gitee.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_gitee
    # github
    Host github.com
    HostName github.com
    PreferredAuthentications publickey
    IdentityFile ~/.ssh/id_rsa_github
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10

    保存退出即可

  5. 测试

    $ ssh -T git@gitee.com
    Hi dubulingbo! You've successfully authenticated, but GITEE.COM does not provide shell access.
    $ ssh -T git@github.com
    Hi dubulingbo! You've successfully authenticated, but GitHub does not provide shell access.
    
    • 1
    • 2
    • 3
    • 4

在这里插入图片描述

出现上述结果就证明配置成功!
  • 1
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小舞很执着/article/detail/798103
推荐阅读
相关标签
  

闽ICP备14008679号