I just backed up my unfuddle account and it sent a zip file with my git repositories as a .git.dmp file. Do I just remove the .dmp ending and use it like a normal .git repository?
A:
Check if it is possibly a git bundle. If that's the case, you can simply clone it to a new directory:
git clone whatever.git.dmp whatever
calmh
2010-01-14 22:14:49
A:
This blog post has a good explanation of using Git and Unfuddle. In short, it says to
mkdir reponame
cd reponame
git init
git fast-import < ../my-unfuddle-backup.git.dmp
git checkout master
Rob
2010-08-10 21:10:43