初装git环境需要配置用户名和邮箱,否则git会提示:please tell me who you are.
你需要运行命令来配置你的用户名和邮箱:
$ git config --global user.name "superGG1990”
$ git config --global user.email “superGG1990@163.com”
注意:(引号内请输入你自己设置的名字,和你自己的邮箱)此用户名和邮箱是git提交代码时用来显示你身份和联系方式的,并不是github用户名和邮箱
一.用git环境的用户可直接采用http(s)协议
二.用git环境的用户采用ssh协议
git环境 用户采用ssh协议 配置
备注:
git报告20210803
隐式文件夹展示呈现
defaults write com.apple.finder AppleShowAllFiles -boolean true ; killall Finder
初次使用git配置以及git如何使用ssh密钥(将ssh密钥添加到github)
https://www.cnblogs.com/superGG1990/p/6844952.html
·git使用ssh密钥
git支持https和ssh两种传输协议,github分享链接时会有两种协议可选:
git协议链接图例:
https协议资接图例:
git使用https协议,每次pull, push都会提示要输入密码,使用git协议,然后使用ssh密钥,这样免去每次都输密码的麻烦