共有ホストには、git バージョン管理システムに追加して改善したい Web サイトがあります。
リモートサーバー上
$cd public_html
$git init
$git add .
$git commit -m 'First Commit'
$cd .git
$ git config git-ftp.user myuser
$ git config git-ftp.password mypass
$ git config git-ftp.url ftp.mydomain.ro
ローカル Linux ミント/Apache
ローカルサーバーからリポジトリをクローン/取得/使用するにはどうすればよいですか?
私は試した
$ git clone ftp://ftp.mydomain.ro/my-project.git
致命的: 'ftp' のリモート ヘルパーが見つかりません
更新しました
また、空の/裸のリポジトリを初期化しようとしました:
git init --bare my-project.git
そしてローカル
$git clone ssh://myuser@ftp.mydomain.ro/my-project.git
余波は次のとおりです。
Cloning into ftp.mydomain.ro...
ssh: connect to host ftp.mydomain.ro port 22: Connection timed out
fatal: The remote end hung up unexpectedly