0


git 设置全局账号密码

设置全局仓库的用户名密码

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文件

cat.gitconfig 
[user]
        name = [email protected]
[credential]
        helper = store

之后在主目录,操作git pull,会提示输入账号密码,需要输一次后面不需要在输

标签: git github

本文转载自: https://blog.csdn.net/weixin_41891696/article/details/127278446
版权归原作者 勇敢打工人 所有, 如有侵权,请联系我们删除。

“git 设置全局账号密码”的评论:

还没有评论