Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
* https://github.com/prati0100/git-gui:
  git-gui: allow opening work trees from the startup dialog
  • Loading branch information
gitster committed Jul 20, 2020
2 parents ae46588 + 469725c commit e7ae437
Showing 1 changed file with 3 additions and 24 deletions.
27 changes: 3 additions & 24 deletions git-gui/lib/choose_repository.tcl
Expand Up @@ -357,31 +357,10 @@ proc _is_git {path {outdir_var ""}} {
if {$outdir_var ne ""} {
upvar 1 $outdir_var outdir
}
if {[file isfile $path]} {
set fp [open $path r]
gets $fp line
close $fp
if {[regexp "^gitdir: (.+)$" $line line link_target]} {
set path [file join [file dirname $path] $link_target]
set path [file normalize $path]
}
}

if {[file exists [file join $path HEAD]]
&& [file exists [file join $path objects]]
&& [file exists [file join $path config]]} {
set outdir $path
return 1
}
if {[is_Cygwin]} {
if {[file exists [file join $path HEAD]]
&& [file exists [file join $path objects.lnk]]
&& [file exists [file join $path config.lnk]]} {
set outdir $path
return 1
}
if {[catch {set outdir [git rev-parse --resolve-git-dir $path]}]} {
return 0
}
return 0
return 1
}

proc _objdir {path} {
Expand Down

0 comments on commit e7ae437

Please sign in to comment.