This is a bibisect repository for LibreOffice. Run the following command to clone it:

git clone https://bibisect.libreoffice.org/linux-64-7.3.git

Alternatively, you can download a git bundle to clone locally. It allows for easier resuming of interrupted downloads, hence might be more robust than `git clone` on unreliable connections.

  1. Download the 7.15GiB bundle, for instance with your browser or using GNU Wget (the flag --continue enables resuming interrupted downloads – so if the command fails simply run it again and `wget` will continue where it left off):
    wget --continue https://bibisect.libreoffice.org/linux-64-7.3.git-bundle
  2. Clone from that bundle:
    git clone -o bundle linux-64-7.3.git-bundle linux-64-7.3
  3. You can now remove linux-64-7.3.git-bundle and use linux-64-7.3 as a normal bibisect git repository.
    rm ./linux-64-7.3.git-bundle
    cd ./linux-64-7.3
    git remote remove bundle
    
  4. You can point your local clone to the live repository in order to get the latest changes. (If the bundle is not cruelly out of date there shouldn't be much to download.)
    git remote add origin https://bibisect.libreoffice.org/linux-64-7.3.git
    git pull origin master
    git branch --set-upstream-to=origin/master master