1

シンプルなクローンを試す:

192-168-0-100:shop nonamez$ git clone "user@76.242.151.105/var/www/html/s1"
fatal: repository 'user@76.242.151.105/var/www/html/s1' does not exist
192-168-0-100:shop nonamez$ git clone "git://user@76.242.151.105/var/www/html/s1"
fatal: could not create work tree dir 's1'.: No such file or directory

Windows版のみ動作

git.exe clone   --progress -v  "user@76.242.151.105:/var/www/html/s1" "C:\Users\Desktop\Projektai\s11"

しかし、それは名前でフィルダーを作成しますC:\Users\Desktop\Projektai\s11

4

1 に答える 1

2

の代わりにuser@76.242.151.105/var/www/html/s1、おそらくuser@76.242.151.105:/var/www/html/s1またはが必要ssh://user@76.242.151.105/var/www/html/s1です。

私が提供したこれらの 2 つの表現は同等です。最初の表現のコロンに注意してください。1 つ目は本質的に 2 つ目の短縮形です。これらは両方とも、基礎となるプロトコルとして ssh を使用します。git://ネイティブプロトコルを使用する別のものです。

git URL の詳細については、ここに入力git help cloneするか、ここにアクセスして、セクション「GIT URLS」に移動してください。

于 2012-11-08T17:19:16.150 に答える