copssh git 服务器


先用ssh you@remotemachine echo \$PATH查看你的git服务器端安装目录在不在,不在就在

.bashrc加上这一句

PATH=$HOME/_bin/git/bin:$PATH

搞定!

注意,加在.bash_profile 没用。。。这个让我兜了不少圈。


http://tomxu.iteye.com/blog/1630967


[email protected]:server/.git


ssh://[email protected]/users/ssh/server/.git


ssh ssh://[email protected] echo \$PATH



地址要是[email protected]:../code/myproject

1、clone时不能用绝对路径,只能写相对于git用户home的相对路径。

2、ssh协议不能写……    :   /  不同



http://stackoverflow.com/questions/6167905/git-clone-through-ssh

 


你可能感兴趣的:(copssh git 服务器)