配置用户名:username
git config --global user.name username
配置邮箱:user@email
git config --global user.email user@email
配置密码
git config --global credential.helper store该命令会记住密码,执行一次 git pull 或 git push 等需要输入密码的命令,输入一次密码。
查看配置
git config --list
配置用户名:username
git config --global user.name username
配置邮箱:user@email
git config --global user.email user@email
配置密码
git config --global credential.helper store该命令会记住密码,执行一次 git pull 或 git push 等需要输入密码的命令,输入一次密码。
查看配置
git config --list
本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。