mirror of
https://github.com/git/git.git
synced 2026-01-25 18:12:44 +00:00
git gui: de-dup selected repo from recentrepo history
When the gui/user selects a repo for display, that repo is brought to
the end of the recentrepo config list. The logic can fail if there are
duplicate old entries for the repo (you cannot unset a single config
entry when duplicates are present).
Similarly, the maxrecentrepo logic could fail if older duplicate entries
are present.
The first commit of this series ({this}~2) fixed the config unsetting
issue. Rather than manipulating a local copy of the $recent list (one
cannot know how many entries were removed), simply re-read it.
We must also catch the error when the attempt to remove the second copy
from the re-read list is performed.
Signed-off-by: Philip Oakley <philipoakley@iee.org>
This commit is contained in:
committed by
Johannes Schindelin
parent
30670c147a
commit
0178338ad6
@@ -247,7 +247,7 @@ proc _get_recentrepos {} {
|
||||
|
||||
proc _unset_recentrepo {p} {
|
||||
regsub -all -- {([()\[\]{}\.^$+*?\\])} $p {\\\1} p
|
||||
git config --global --unset-all gui.recentrepo "^$p\$"
|
||||
catch {git config --global --unset-all gui.recentrepo "^$p\$"}
|
||||
load_config 1
|
||||
}
|
||||
|
||||
@@ -262,12 +262,11 @@ proc _append_recentrepos {path} {
|
||||
set i [lsearch $recent $path]
|
||||
if {$i >= 0} {
|
||||
_unset_recentrepo $path
|
||||
set recent [lreplace $recent $i $i]
|
||||
}
|
||||
|
||||
lappend recent $path
|
||||
git config --global --add gui.recentrepo $path
|
||||
load_config 1
|
||||
set recent [get_config gui.recentrepo]
|
||||
|
||||
if {[set maxrecent [get_config gui.maxrecentrepo]] eq {}} {
|
||||
set maxrecent 10
|
||||
@@ -275,7 +274,7 @@ proc _append_recentrepos {path} {
|
||||
|
||||
while {[llength $recent] > $maxrecent} {
|
||||
_unset_recentrepo [lindex $recent 0]
|
||||
set recent [lrange $recent 1 end]
|
||||
set recent [get_config gui.recentrepo]
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user