You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: rev_news/drafts/edition-13.md
+29-18Lines changed: 29 additions & 18 deletions
Original file line number
Diff line number
Diff line change
@@ -21,23 +21,30 @@ This edition covers what happened during the month of February 2016.
21
21
22
22
*[RFC: Resumable clone based on hybrid "smart" and "dumb" HTTP](http://thread.gmane.org/gmane.comp.version-control.git/285921/)
23
23
24
-
It is a well known problem that `git clone` is not resumable. If the
24
+
It is a widely known problem that `git clone` is not resumable. If the
25
25
connection comes down during a clone, the clone has to be restarted
26
26
from scratch.
27
27
28
-
A work around that is often suggested is to use `git bundle` first, then
29
-
to rsync that bundle and eventually to clone using the rsync'ed bundle. Some
30
-
tools [like gitolite](http://thread.gmane.org/gmane.comp.version-control.git/235040/) have even been making it easier to support that.
28
+
A work around that is often suggested and used is to first create a
29
+
bundle using `git bundle`, to rsync that bundle, then to clone from
30
+
the rsync'ed bundle and eventually to fetch what is missing from the
31
+
remote git repository. Some tools
32
+
[like gitolite](http://thread.gmane.org/gmane.comp.version-control.git/235040/) or
33
+
[the "repo" tool that is used by AOSP](https://source.android.com/source/using-repo.html)
0 commit comments