I have full access to some folder on a remote Linux server over ssh and scp. I can upload and download files but not install apps. Now I want to put a git repository on this server. When I try to clone from an over scp copied repository I get the following error message:

sgit-upload-pack: Command not found
fatal: The remote end hung up unexpectedly

Cloning using the same command from Github works as expected. Do I need Git installed on the server? If yes, is there any work around?

link|improve this question

feedback

2 Answers

up vote 6 down vote accepted

I think that git needs to be there. But you can simply install it in the directory you have access to.

link|improve this answer
How can I install git into user directory? apt-get (for Ubuntu) doesn't seem to have such an option. – Mouk Oct 2 '09 at 13:28
You can install it manually. Download the source distribution from git-scm.com/download, unpack and then follow the instructions in INSTALL. You will probably need a compiler and so on. – Roman Plášil Oct 2 '09 at 14:25
To go along with what Roman said, on a Debian based system you should install build-essentials to get gcc and make and so forth. – docgnome Oct 3 '09 at 1:10
The problem is, I can install nothing. And Git seems to have a lot of dependencies. I guess, I will give up compiling Git and try ... something else. Thanks anyway. – Mouk Oct 4 '09 at 16:56
If you want to play, you could get a binary distribution for your linux and unpack it by hand (but you would still need the runtime dependencies). – Roman Plášil Oct 4 '09 at 18:07
show 2 more comments
feedback

You could use SSHFS and mount the directory on your local machine, and then run Git locally.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.