0


【Git】如何进行Git的配置、用户名密码缓存和清除(总结)

配置Git用户名和邮箱

全局

git config --global user.name "username"git config --global user.email "[email protected]"

单个项目

git config user.name "username"git config user.email "[email protected]"

清除缓存记录中的用户名和密码

git config --system--unset credential.helper

缓存用户名和密码

全局

git config --global credential.helper store        #全局

单项目

git config credential.helper store        #单个项目

清除git中缓存的用户名和密码

git credential-manager uninstall
#如果电脑是macos提示 git: 'credential-wincred' is not a git command. See 'git --help'#第一步:git config --unset-all credential.helper
#第二步:git config --global credential.helper osxkeychain
标签: git github

本文转载自: https://blog.csdn.net/wzyleix97/article/details/128654373
版权归原作者 毛毛三由 所有, 如有侵权,请联系我们删除。

“【Git】如何进行Git的配置、用户名密码缓存和清除(总结)”的评论:

还没有评论