git配置ssh和https

git配置ssh和https

一. 个人习惯用ssh,先说一下ssh的配置方法吧

  1. 配置基本信息
    git config --global user.email ‘用户邮箱’
    git config --global user.name ‘用户名’

  2. 执行生成公钥和私钥的命令,一直回车跳出去就可以:
    ssh-keygen -t rsa

  3. 查看公钥,复制输出的完整信息:
    cat ~/.ssh/id_rsa.pub
    在这里插入图片描述

  4. 进入项目平台,找到个人设置,在设置界面找到SSH公钥,然后点击增加公钥,复制公钥信息进去,确定即可
    git配置ssh和https_第1张图片git配置ssh和https_第2张图片
    5. git clone xx(项目url) ,完成。
    6. 修改你的用户名和邮箱
    git config --global --replace-all user.name “你的用户名”
    git config --global --replace-all user.email “你的邮箱”
    7. 查看配置
    git config -l

二. https设置配置 .git/config

**git config --global credential.helper store

只需输入一次账号密码即**

你可能感兴趣的:(git提交配置,git,其他)