Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is a .git.dmp file and how can I use it?

Tags:

git

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?

like image 295
Blake Lucchesi Avatar asked Jan 11 '10 14:01

Blake Lucchesi


1 Answers

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
like image 93
Rob Avatar answered Nov 15 '22 21:11

Rob