美文网首页
git 基础知识(一)

git 基础知识(一)

作者: BlueCute | 来源:发表于2020-12-13 20:13 被阅读0次

    (一)查看配置信息

    git config --list

    (二)配置用户信息

    git config --global user.name "your name"

    git config --global user.email you@example.com

    (三)生成公钥和私钥

    ssh-keygen -t rsa -C user.email

    cat ~/.ssh/id_rsa.pub

    将公钥粘贴在内源网站,setting--SSH Key--设置 title -- Add Key

    相关文章

      网友评论

          本文标题:git 基础知识(一)

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