diff options
author | Paul Mackerras <paulus@samba.org> | 2008-02-16 17:47:31 +1100 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-02-16 22:22:22 +1100 |
commit | f1bf4ee6d78209a1c45cca1bf3b38252208434d2 (patch) | |
tree | 7a2b99c2f6222663857c65795e32f0fd86c47be3 | |
parent | b8a938cf78026eedafc202716b27986fdacb86e3 (diff) | |
download | git-f1bf4ee6d78209a1c45cca1bf3b38252208434d2.tar.gz git-f1bf4ee6d78209a1c45cca1bf3b38252208434d2.tar.xz |
gitk: Cope better with getting commits that we have already seen
This fixes a bug in updating the graph after we have cherry-picked
a commit in gitk and then added some new stuff externally. First,
we weren't updating viewincl with the new head added by the cherry-
pick. Secondly, getcommitlines was doing bad things if it saw a
commit that was already in the graph (was already in an arc). This
fixes both things. If getcommitlines sees a commit that is already
in the graph, it ignores it unless it was not listed before and is
listed now. In that case it doesn't assign it a new arc now, and
doesn't re-add the commit to its arc.
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rwxr-xr-x | gitk | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -1065,7 +1065,11 @@ proc getcommitlines {fd inst view} { } set id [lindex $ids 0] set vid $view,$id - if {!$listed && [info exists parents($vid)]} continue + set a 0 + if {[info exists varcid($vid)]} { + if {$cmitlisted($vid) || !$listed} continue + set a $varcid($vid) + } if {$listed} { set olds [lrange $ids 1 end] } else { @@ -1074,10 +1078,9 @@ proc getcommitlines {fd inst view} { set commitdata($id) [string range $cmit [expr {$j + 1}] end] set cmitlisted($vid) $listed set parents($vid) $olds - set a 0 if {![info exists children($vid)]} { set children($vid) {} - } elseif {[llength $children($vid)] == 1} { + } elseif {$a == 0 && [llength $children($vid)] == 1} { set k [lindex $children($vid) 0] if {[llength $parents($view,$k)] == 1 && (!$datemode || @@ -1089,11 +1092,14 @@ proc getcommitlines {fd inst view} { # new arc set a [newvarc $view $id] } - set varcid($vid) $a if {[string compare [lindex $varctok($view) $a] $vtokmod($view)] < 0} { modify_arc $view $a } - lappend varccommits($view,$a) $id + if {![info exists varcid($vid)]} { + set varcid($vid) $a + lappend varccommits($view,$a) $id + incr commitidx($view) + } set i 0 foreach p $olds { @@ -1112,7 +1118,6 @@ proc getcommitlines {fd inst view} { incr i } - incr commitidx($view) if {[info exists commitinterest($id)]} { foreach script $commitinterest($id) { lappend scripts [string map [list "%I" $id] $script] @@ -7035,7 +7040,7 @@ proc mkbrgo {top} { } proc cherrypick {} { - global rowmenuid curview + global rowmenuid curview viewincl global mainhead mainheadid set oldhead [exec git rev-parse HEAD] @@ -7069,6 +7074,12 @@ proc cherrypick {} { movedhead $newhead $mainhead set mainheadid $newhead } + # remove oldhead from viewincl and add newhead + set i [lsearch -exact $viewincl($curview) $oldhead] + if {$i >= 0} { + set viewincl($curview) [lreplace $viewincl($curview) $i $i] + } + lappend viewincl($curview) $newhead redrawtags $oldhead redrawtags $newhead selbyid $newhead |