* git-clone and unreliable links?
@ 2012-11-07 15:35 Josef Wolf
2012-11-07 15:54 ` Shawn Pearce
0 siblings, 1 reply; 3+ messages in thread
From: Josef Wolf @ 2012-11-07 15:35 UTC (permalink / raw)
To: git
Hello,
When using git-clone over an unreliable link (say, UMTS) and the network goes
down, git-clone deletes everything what was downloaded. When the network goes
up again and you restart git-clone, it has to start over from the
beginning. Then, eventually, the network goes down again, and everything is
deleted again.
Is there a way to omit the deleting step, so the second invocation would start
where the first invocation was interrupted?
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: git-clone and unreliable links?
2012-11-07 15:35 git-clone and unreliable links? Josef Wolf
@ 2012-11-07 15:54 ` Shawn Pearce
2012-11-09 16:35 ` Sitaram Chamarty
0 siblings, 1 reply; 3+ messages in thread
From: Shawn Pearce @ 2012-11-07 15:54 UTC (permalink / raw)
To: Josef Wolf, git
On Wed, Nov 7, 2012 at 7:35 AM, Josef Wolf <jw@raven.inka.de> wrote:
> When using git-clone over an unreliable link (say, UMTS) and the network goes
> down, git-clone deletes everything what was downloaded. When the network goes
> up again and you restart git-clone, it has to start over from the
> beginning. Then, eventually, the network goes down again, and everything is
> deleted again.
>
> Is there a way to omit the deleting step, so the second invocation would start
> where the first invocation was interrupted?
No, because a clone is not resumable.
The best way to obtain a repository over an unstable link is to ask
the repository owner to make a bundle file with `git bundle create
--heads --tags` and serve the file using standard HTTP or rsync, which
are resumable protocols. After you download the file, you can clone or
fetch from the bundle to initialize your local repository, and then
run git fetch to incrementally update to anything that is more recent
than the bundle's creation.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: git-clone and unreliable links?
2012-11-07 15:54 ` Shawn Pearce
@ 2012-11-09 16:35 ` Sitaram Chamarty
0 siblings, 0 replies; 3+ messages in thread
From: Sitaram Chamarty @ 2012-11-09 16:35 UTC (permalink / raw)
To: Shawn Pearce; +Cc: Josef Wolf, git
On Wed, Nov 7, 2012 at 9:24 PM, Shawn Pearce <spearce@spearce.org> wrote:
> On Wed, Nov 7, 2012 at 7:35 AM, Josef Wolf <jw@raven.inka.de> wrote:
>> When using git-clone over an unreliable link (say, UMTS) and the network goes
>> down, git-clone deletes everything what was downloaded. When the network goes
>> up again and you restart git-clone, it has to start over from the
>> beginning. Then, eventually, the network goes down again, and everything is
>> deleted again.
>>
>> Is there a way to omit the deleting step, so the second invocation would start
>> where the first invocation was interrupted?
>
> No, because a clone is not resumable.
>
> The best way to obtain a repository over an unstable link is to ask
> the repository owner to make a bundle file with `git bundle create
> --heads --tags` and serve the file using standard HTTP or rsync, which
> are resumable protocols. After you download the file, you can clone or
> fetch from the bundle to initialize your local repository, and then
> run git fetch to incrementally update to anything that is more recent
> than the bundle's creation.
If the server is running gitolite, the admin can set it up so that a
bundle file is automatically created as needed (including "don't do it
more than once per <duration>" logic), and serve it up over rsync
using the same ssh credentials as for access to the repo itself.
However, this is not particularly useful for systems with git://,
although it could certainly be *adapted* for http access.
[Documentation is inline, in src/commands/rsync, for people who wish to know.]
--
Sitaram
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-11-09 16:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-07 15:35 git-clone and unreliable links? Josef Wolf
2012-11-07 15:54 ` Shawn Pearce
2012-11-09 16:35 ` Sitaram Chamarty
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).