3

我在初始屏幕上有一些最近使用的存储库,我想删除它们,因为我不再使用它们了。如何删除它们?

操作系统 = Windows 7

我查看了注册表并搜索了 git 目录,但找不到最近使用的列表存储在哪里。

4

1 回答 1

3

来自git-gui 来源choose_repository.tcl

proc _get_recentrepos {} {
  set recent [list]
  foreach p [get_config gui.recentrepo] {
    if {[_is_git [file join $p .git]]} {
      lappend recent $p
    } else {
      _unset_recentrepo $p
    }
  }
  return [lsort $recent]
}

因此git config,请检查是否有gui.recentrepo可以修改的行。

请注意,将那些旧的 repos 移走(即确保它们记录的路径不再有效)将使 git-gui 中的这些条目自动消失

于 2013-03-11T07:03:31.150 回答