recover a git repository from a server copy
Create a bundle
cd reponame.git
git bundle create reponame.bundle --all
Move the bundle file to a different location
Restore git repository from the bundle file
git clone reponame.bundle reponame
Create a bundle
cd reponame.git
git bundle create reponame.bundle --all
Move the bundle file to a different location
Restore git repository from the bundle file
git clone reponame.bundle reponame