I have a GIT running on a Solaris server.
On a Windows machine, I installed cygwin to try to clone the repository hosted on the server.
I do the following:
$ git clone username@server : project.git
ksh: git-upload-pack: not found
So I'm trying
$ ssh username@server echo \ $ PATH
/ usr / bin
It looks like GIT is not located in / usr / bin /, but in / usr / local / bin /. I tried changing PATH in .bashrc in my home directory on the server to add / usr / local / bin / ... but it does not work.
What am I doing wrong?
source share