设置全局仓库的用户名密码
git config --global user.name "userName" //你的用户名
git config --global user.email "email address" //你的邮箱地址
git config --list //查看git设置情况
git记住用户名以及密码
git config --global credential.helper store
以上是全局,会在用户的主目录生成.gitconfig文件文章来源:https://www.toymoban.com/news/detail-509963.html
cat .gitconfig
[user]
name = deploy@123.com
[credential]
helper = store
之后在主目录,操作git pull,会提示输入账号密码,需要输一次后面不需要在输文章来源地址https://www.toymoban.com/news/detail-509963.html
到了这里,关于git 设置全局账号密码的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!