]> Pileus Git - ~andy/git/commitdiff
git-gui: Copy objects/info/alternates during standard clone
authorShawn O. Pearce <spearce@spearce.org>
Mon, 24 Sep 2007 12:50:58 +0000 (08:50 -0400)
committerShawn O. Pearce <spearce@spearce.org>
Tue, 25 Sep 2007 01:48:39 +0000 (21:48 -0400)
If the source repository is using an objects/info/alternates file
we need to copy the file to our new repository so that it can access
any objects that won't be copied/hardlinked as they are stored in the
alternate location.

We explicitly resolve all paths in the objects/info/alternates as
relative to the source repository but then convert them into an
absolute path for the new clone.  This allows the new clone to
access the exact same locaton as the source repository, even if
relative paths had been used before.

Under Cygwin we assume that Git is Cygwin based and that the paths
in objects/info/alternates must be valid Cygwin UNIX paths, so we
need to run `cygpath --unix` on each line in the alternate list.

Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
lib/choose_repository.tcl

index 4ad1f781f77357d3da8566cc261a0cc3b2cced72..f7b8c930950d85f94f38e211ce7cef4eae8df9f5 100644 (file)
@@ -470,6 +470,32 @@ method _do_clone2 {} {
                        [mc "buckets"]
                update
 
+               if {[file exists [file join $objdir info alternates]]} {
+                       set pwd [pwd]
+                       if {[catch {
+                               file mkdir [gitdir objects info]
+                               set f_in [open [file join $objdir info alternates] r]
+                               set f_cp [open [gitdir objects info alternates] w]
+                               fconfigure $f_in -translation binary -encoding binary
+                               fconfigure $f_cp -translation binary -encoding binary
+                               cd $objdir
+                               while {[gets $f_in line] >= 0} {
+                                       if {[is_Cygwin]} {
+                                               puts $f_cp [exec cygpath --unix --absolute $line]
+                                       } else {
+                                               puts $f_cp [file normalize $line]
+                                       }
+                               }
+                               close $f_in
+                               close $f_cp
+                               cd $pwd
+                       } err]} {
+                               catch {cd $pwd}
+                               _clone_failed $this [mc "Unable to copy objects/info/alternates: %s" $err]
+                               return
+                       }
+               }
+
                set tolink  [list]
                set buckets [glob \
                        -tails \