I want to get clone of LibreOffice. Here's what written on official website:

All our source code is hosted in git:

Clone: $ git clone git://anongit.freedesktop.org/libreoffice/core # (browse)

Clone (http): $ git clone http://anongit.freedesktop.org/git/libreoffice/core.git # slower

Tarballs: http://download.documentfoundation.org/libreoffice/src/

please find the latest versions (usually near the bottom)

now, when I write command in git bash to clone, it starts fetching. But the repository is so big that after hours when my internet get disconnected for seconds, it rollbacks the download. I get nothing.

What I want, is there any way like "Internet Download Manager" by using what I can get repository smoothly even if interruptions occur in Internet?

P.S. I am new user of Git. I use 1 MB DSL internet connection. The repository must be over 1 GB.

link|improve this question
feedback

2 Answers

The repository is accessible via the http protocol (aka dumb protocol) here: http://anongit.freedesktop.org/git/libreoffice/core.git.

You can download everything here with wget or another download manager, and you'll have a clone of the repository. After that, you rename the directory from core.git to .git, and use the following command to tell git about the remote url:

$ git remote add remote http://anongit.freedesktop.org/git/libreoffice/core.git
$ git reset --hard HEAD
link|improve this answer
feedback

do 'git clone --depth 100' It should grab the last 100 commits

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.