本文介绍了如何撤消git config --system core.askpass git-gui - askpass的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
尝试解决我使用git push时遇到的问题时,请执行该命令。它提示我每次我混帐推,我不知道如何禁用它。试试跑: git config --system --unset-all core.askpass
删除该配置。然后,您可以运行 git config --system --list
来查看系统配置的完整列表,以确保它不存在。
Ran that command when trying to fix a problem I was having with git push. It prompts me every time I git push and I have no idea how to disable it.
解决方案
Try running:
git config --system --unset-all core.askpass
to remove that configuration. You can then run git config --system --list
to view the full list of system configurations to ensure it's gone.
这篇关于如何撤消git config --system core.askpass git-gui - askpass的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!