Re: git pull works remotely but not locally
From: Jeff King <hidden>
Date: 2016-06-15 22:48:52
On Thu, May 27, 2010 at 04:07:05PM +0100, Ivan Uemlianin wrote:
quoted
It looks like there's something wrong with your installation of Git. Perhaps you'd like to re-installThe error is like this: $ /opt/libexec/git-core/git-pull /opt/libexec/git-core/git-pull: line 11: git-sh-setup: No such file or directory I'm calling git-pull from my clone of the repos, so I don't have git-sh-setup in my current directory. That all seems fine: I imagine git-pull is not intended to be called directly.
It's not. It expects the git wrapper to have set up the PATH to have /opt/libexec/git-core in it, which would then find git-sh-setup. What happens if you run "git pull"? If you get an error, can you try to run "GIT_TRACE=1 git pull"? Git should then print out exactly what it is trying to exec that is failing. -Peff