git
git config --global user.name "username"
设置用户名
git config --global --replace-all user.name "用户名"
修改用户名
git config --global user.email "email"
设置邮箱
git config --global --replace-all user.email "修改邮箱"
修改邮箱
git config --global --replace-all user.password "修改密码"
修改密码
git config user.name
查看用户名
git config user.email
查看邮箱
git config user.password
查看密码
用户名:提交代码的用户名,相当于作者名
git config --global user.name "xxx"
邮箱:邮箱账号
git config --global user.email "xxx@xxx.com"
查看配置是否成功
git config --list
cd ~/.ssh
cat 后缀为.pub的文件
出现“No such file or directory”,则表示需要创建一个ssh keys
没有生成过秘钥和公钥,就要生成ssh密钥
ssh-keygen -t rsa -C "youremail@example.com" 三个回车后,生成id_rsa和id_rsa.pub
有密钥,重新生成后会报错,不能够更新
ssh-keygen -t rsa -C "your.email@example.com" -b 4096
cat ~/.ssh/id_rsa.pub