tags:

views:

72

answers:

2

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
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