From: Mark Wooding Date: Tue, 4 Apr 2006 06:24:55 +0000 (-0700) Subject: [PATCH] gitk: Use git wrapper to run git-ls-remote. X-Git-Tag: v1.3.0-rc3~7^2~3 X-Git-Url: https://git.octo.it/?a=commitdiff_plain;h=ce08872259d3036f424070cb5a9a4d5ec67f1f7a;p=git.git [PATCH] gitk: Use git wrapper to run git-ls-remote. For some reason, the Cygwin Tcl's `exec' command has trouble running scripts. Fix this by using the C `git' wrapper. Other GIT programs run by gitk are written in C already, so we don't need to incur a performance hit of going via the wrapper (which I'll bet isn't pretty under Cygwin). Signed-off-by: Mark Wooding Acked-by: Junio C Hamano Signed-off-by: Paul Mackerras --- diff --git a/gitk b/gitk index 8aff933e..26099215 100755 --- a/gitk +++ b/gitk @@ -284,7 +284,7 @@ proc readrefs {} { foreach v {tagids idtags headids idheads otherrefids idotherrefs} { catch {unset $v} } - set refd [open [list | git-ls-remote [gitdir]] r] + set refd [open [list | git ls-remote [gitdir]] r] while {0 <= [set n [gets $refd line]]} { if {![regexp {^([0-9a-f]{40}) refs/([^^]*)$} $line \ match id path]} {