git 初次使用的配置流程

1 设置账号与绑定的邮箱
git config --global user.name "xxxxxxx"
git config --global user.email "[email protected]"

2 生成公钥和私钥
ssh-keygen -t rsa -C "绑定的邮箱地址" // 连按三下回车生成

3 查看密钥
cat ~/.ssh/id_rsa.pub // 放到仓库里配置一下
查看git的用户名和密码
git config user.name // 查看用户名
git config user.password // 查看密码
git config user.email // 查看邮箱
git config --list // 查看配置信息

// 修改用户名
git config --global user.name "xxxx(新的用户名)"
// 修改密码
git config --global user.password "xxxx(新的密码)"
// 修改邮箱
git config --global user.email "[email protected](新的邮箱)"

你可能感兴趣的:(git)