I can edit in the configuration file that contains the username,password and github email using git with
git config --global -e
OR
git config --global --edit
or in the .gitconfig
file
How can I edit the gitlab
and bitbucket
config files to contain a username, password, and email, and then where do I save it in Windows?
答案 0 :(得分:3)
我不知道该配置在哪里,但您在Windows中需要做的就是确保已设置正确的凭据帮助程序来缓存凭据:
git config --global credential.helper manager
然后,在第一次按下时,系统将提示您输入GitLab用户名/密码 输入后,它们将被缓存在Windows凭据管理器中,并且永远不会再次直接询问。
答案 1 :(得分:3)
我找到了三种方法。 首先,删除配置的用户名和密码。 在git中运行此命令
cmdkey /delete:git:https://gitlab.com
如果要删除git命令行中的bitbucket配置写入
cmdkey /delete:git:https://bitbucket.org
然后,在下一次推送中,系统将提示您输入GitLab OR bitbucket 用户名/密码
第二种方式,通过git
显示窗口Credential Manager
rundll32 keymgr, KRShowKeyMgr
传统上使用Credential Manager
在配置文件中编辑
我希望这个答案可以帮助你。