如何在不删除这些存储库或.git
其中的文件夹的情况下清除 Git Gui 的最近存储库中的条目?
以下是一个例子:
这是我的 Git/Git Gui 版本信息:
答案1
最近打开的存储库列表存储在配置中gui.recentrepos。
访问https://stackoverflow.com/questions/2114111/where-does-git-config-global-get-written-to有关配置文件存储位置的更多信息。
例如:在我的%HOMEPATH%
文件夹文件.gitconfig
(msysGit 1.8.1)中:
[gui]
recentrepo = C:/one
recentrepo = C:/two
而且C:\Program files\Git\etc\gitconfig
没有gui.recentrepo设置,仅限全局设置。
答案2
打开 Git Bash 并尝试:
git config --global --unset-all gui.recentrepo