美文网首页
git-turtoise配置

git-turtoise配置

作者: Westring | 来源:发表于2020-12-26 22:58 被阅读0次

    1、配置全局参数

    image.png
    git config --global user.name “xx”
    git config --global user.emailxx@xx.com
    2、生成密钥
    ssh-keygen -t rsa -C "youremail@example.com"
    ssh-add ~/.ssh/id_rsa
    若报错,则执行 ssh-agent bash 后再次执行 ssh-add ~/.ssh/id_rsa
    3、上传公钥到github
    第二步生成的文件在用户根目录下
    image.png
    image.png
    image.png
    image.png
    将公钥中的内容复制下来
    image.png
    image.png
    完成!!!
    注意不要在samba路径下拉代码,不然会报以下这种错误
    image.png

    相关文章

      网友评论

          本文标题:git-turtoise配置

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