up vote 87 down vote favorite
27
share [g+] share [fb]

I have been using git to keep two copies of my project in sync, one is my local box, the other the test server. This is an issue which occurs when I log onto our remote development server using ssh;

git clone me@me.mydevbox.com:/home/chris/myproject
Initialized empty Git repository in /tmp/myproject/.git/
Password:
bash: git-upload-pack: command not found
fatal: The remote end hung up unexpectedly
fetch-pack from 'me@me.mydevbox.com:/home/chris/myproject' failed.

(the file-names have been changed to protect the guilty... !)

Both boxes run Solaris 10 AMD. I have done some digging, if I add --upload-pack=which git-upload-pack the command works, (and proves that $PATH contains the path to 'git-upload-pack' as per the RTFM solution) but this is really annoying, plus 'git push' doesn't work, because I don't think there is a --unpack= option.

Incidentally, all the git commands work fine from my local box, it is the same version of the software (1.5.4.2), installed on the same NFS mount at /usr/local/bin.

Can anybody help?

link|improve this question

feedback

13 Answers

up vote 99 down vote accepted

Make sure git-upload-pack is on the path from a non-login shell. (On my machine it's in /usr/bin).

To see what your path looks like on the remote machine from a non-login shell, try this:

ssh you@remotemachine echo \$PATH

(That works in Bash, Zsh, and tcsh, and probably other shells too.)

If the path it gives back doesn't include the directory that has git-upload-pack, you need to fix it by setting it in .bashrc (for Bash), .zshenv (for Zsh), .cshrc (for tcsh) or equivalent for your shell.

You will need to make this change on the remote machine.

link|improve this answer
1  
The path was correct if I run the command on my machine, but wrong if I run it the other way around. (from the remote machine back to mine) Editing my local .bashrc fixed it. Thanks – Chris Huang-Leaver Jan 21 '09 at 11:58
Against Chris's comments, I found that when Matt's command reported the wrong path, I logged in with "ssh you@remotemachine" and changed the .bashrc there; that fixed the problem. Changing the "local" .bashrc makes no difference that I can see. – Dan Fabulich Mar 24 '09 at 0:07
I had ssh'd into a remote machine trying to pull from local system, which is why my .bashrc was the one to change. It's the same issue as you but reversed. – Chris Huang-Leaver Jul 16 '09 at 12:57
3  
Worked on OSX Leopard – Noah Campbell Sep 23 '09 at 0:46
I had an additional problem; when I ssh'd into the remote machine and executed git-upload-pack, it found it find, but not when I was cloning. (ie: the PATH was different between the direct login and the remote execution). Setting the path in .bashrc, as described here, fixed the problem. – Craig Walker Nov 21 '09 at 22:13
show 8 more comments
feedback

You can also use the "-u" option to specify the path. I find this helpful on machines where my .bashrc doesn't get sourced in non-interactive sessions. For example,

git clone -u /home/you/bin/git-upload-pack you@machine:code
link|improve this answer
2  
Thanks for that. I really didn't want to change the ~/.bashrc file. – Luis Nov 24 '09 at 14:12
Very helpful, thanks. – ayaz Oct 26 '10 at 9:49
feedback

I found and used (successfully) this fix:

# Fix it with symlinks in /usr/bin
$ cd /usr/bin/
$ sudo ln -s /[path/to/git]/bin/git* .

Thanks to Paul Johnston.

link|improve this answer
1  
worked for me on OSX who installed git via macports – Chris Farmiloe Jun 18 '09 at 18:58
feedback

Matt's solution didn't work for me on OS X, but Paul's did.

The short version from Paul's link is:

Created /usr/local/bin/ssh_session with the following text:

#!/bin/bash
export SSH_SESSION=1
if [ -z "$SSH_ORIGINAL_COMMAND" ] ; then
    export SSH_LOGIN=1
    exec login -fp "$USER"
else
    export SSH_LOGIN=
    [ -r /etc/profile ] && source /etc/profile
    [ -r ~/.profile ] && source ~/.profile
    eval exec "$SSH_ORIGINAL_COMMAND"
fi

Execute:

chmod +x /usr/local/bin/ssh_session

Add the following to /etc/sshd_config:

ForceCommand /usr/local/bin/ssh_session

link|improve this answer
Interesting to hear it didn't work for you. Do you mind telling what it said PATH on the remote machine was, when you ran "ssh you@remote \$PATH"? – Matt Curtis Sep 24 '09 at 10:47
feedback

For bash, it needs to be put into .bashrc not .bash_profile (.bach_profile is also only for login shells).

link|improve this answer
feedback

Mac OS X and some other Unixes at least have the user path compiled into sshd for security reasons so those of us that install git as /usr/local/git/{bin,lib,...} can run into trouble as the git executables are not in the precompiled path. To override this I prefer to edit my /etc/sshd_config changing:

#PermitUserEnvironment no

to

PermitUserEnvironment yes

and then create ~/.ssh/environment files as needed. My git users have the following in their ~/.ssh/environment file:

PATH=/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/git/bin

Note variable expansion does not occur when the ~/.ssh/environment file is read so:

PATH=$PATH:/usr/local/git/bin

will not work.

link|improve this answer
This seems like the perfect tip, but it's not working here for 10.6.6. ssh user@host echo \$PATH still shows the hard coded build path. Addded .ssh/environment with non-expanding required path. Changed /etc/sshd_config PermitUserEnvironment yes. no dice. Any suggestions? Thanks. – Dad Apr 6 '11 at 6:42
Also tried setting BASH_ENV='~/.nibashrc' on the client machine and making a file in that with the expanded path in it. also no dice. – Dad Apr 6 '11 at 6:45
Ok. so putting the path in .bashrc on the machine you are connecting to worked for me. – Dad Apr 6 '11 at 6:48
feedback

I got these errors with the MsysGit version.

After following all advice I could find here and elsewhere, I ended up:

installing the Cygwin version of Git

on the server (Win XP with Cygwin SSHD), this finally fixed it.

I still use the MsysGit version client side

..in fact, its the only way it works for me, since I get POSIX errors with the Cygwin Git pull from that same sshd server

I suspect some work is still needed this side of Git use.. (ssh+ease of pull/push in Windows)

link|improve this answer
feedback

I had the same problem with a Windows client connecting to an old FedoraCore 4 system. The solution pointed me in the right direction but changing .bash_profile etc didn't help as they aren't being ran by default by ssh.

The solution was here: link text

link|improve this answer
feedback

If none of these solutions work, you should be able to clone each repository with -u <path to git-upload-pack> (as suggested by Brian Hawkins) and run the following commands once per repository. These settings remove the need for --upload-pack or --receive-pack arguments to git-push, git-pull, etc.

git config remote.origin.uploadpack /path/to/git-upload-pack
git config remote.origin.receivepack /path/to/git-receive-pack

This works well on servers that are configured to ignore user environment files (~/.bashrc, ~/.ssh/environment) and/or prevent environment variable modification during non-interactive commands.

link|improve this answer
Thanks for mentioning the --receive-pack option to git-push ! – Axel Nov 4 '11 at 9:56
feedback

Like Johan pointed out many times its .bashrc that's needed:

ln -s .bash_profile .bashrc

link|improve this answer
feedback

For zsh you need to put it in this file: ~/.zshenv

For example, on OS X using the git-core package from MacPorts:

$ echo 'export PATH=/opt/local/sbin:/opt/local/bin:$PATH' > ~/.zshenv

link|improve this answer
feedback

I have been having issues connecting to a Gitolite repo using SSH from Windows and it turned out that my problem was PLINK! It kept asking me for a password, but the ssh gitolite@[host] would return the repo list fine.

Check your environment variable: GIT_SSH. If it is set to Plink, then try it without any value ("set GIT_SSH=") and see if that works.

link|improve this answer
feedback

You must add the

export PATH=/opt/git/bin:$PATH

before this line in the .bashrc:

# If not running interactively, don't do anything
[ -z "$PS1" ] && return

Otherwise all export statements will not be executed (see here).

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.