tags:

views:

129

answers:

2

Hi,

Currently I have an website on a .zip file containing also the .git directory and all the history. I want it to be imported into an Assembla git repository preserving the history of all previous changes. Is there an easy way of doing it?

A: 

extract your zip, navigate to it in your shell, and do git push <git assembla url> :. this should push all the refs to the new assembla repo.

Matt Briggs
I am trying to do so but I get:No refs in common and none specified; doing nothing.Perhaps you should specify a branch such as 'master'.fatal: The remote end hung up unexpectedlyerror: failed to push some refs to '[email protected]:xxxx.git'What else can I do?
Jacobo Tibaquira
A: 

If you cannot push to an assembla repo, check your ssh keys, like in this thread.

ssh -v [email protected]

And see if there was not too much login errors in your tries:

Your IP was added to blacklist due login failure to our server.

VonC