Skip to content

Instantly share code, notes, and snippets.

@maxivak
Last active April 11, 2023 15:08
Show Gist options
  • Star 21 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save maxivak/513191447d15c4d30953006d99928658 to your computer and use it in GitHub Desktop.
Save maxivak/513191447d15c4d30953006d99928658 to your computer and use it in GitHub Desktop.
Restore repo from Gitlab bundle file

Gitlab exports repositories to tar archive which contains .bundle files.

We have repo.bundle file and we want to restore files from it.

  • create bare repo from bundle file
git clone --mirror myrepo.bundle my.git

This will create a folder my.git which contains a bare repository.

Now we will restore data from a bare repo into our folder

mkdir output

cd my.git

git archive master | (cd ../output && tar x)

Now folder output has all files from the repo. We can copy files to any destination.

Misc

  • working with .bundle files
git bundle verify myrepo.bundle

git bundle unbundle myrepo.bundle
@offsecin
Copy link

offsecin commented Jun 3, 2020

Thanks a lot ,it really helped me !

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment