2

リモートリポジトリにプッシュしようとしています。しかし、私はいつもこれを取得します:

Account not found.
fatal: The remote end hung up unexpectedly

「git remote show origin」を実行すると、同じ応答が得られます。git remote -v を実行すると、次のようになります。

origin  sls@slsapp.com:1234/fitzler/fitzler-web-app.git (fetch)
origin  sls@slsapp.com:1234/fitzler/fitzler-web-app.git (push)

私も成功してsshを試しました:

$ ssh sls@slsapp.com
Enter passphrase for key '/c/Users/jacobrohde/\.ssh\id_rsa':
Hi there! You are good to go. Just start pushing and pulling :)
Connection to slsapp.com closed.

ここで何が間違っている可能性がありますか?

4

1 に答える 1

0

リモートを指定する場合、通常は次のように記述します。

user@host:repro

あなたの場合、ホストは別のポートを使用します。これを追加する:port必要があるため、より明示的な方法を使用する必要があります。

ssh://user@host:port/repro

参照: 他の SSH ポートを使用した git remote add

以下もご覧くださいman git fetch

GIT URL 一般に、URL にはトランスポート プロトコル、リモート サーバーのアドレス、およびリポジトリへのパスに関する情報が含まれます。トランスポート プロトコルによっては、この情報の一部が存在しない場合があります。

   Git natively supports ssh, git, http, https, ftp, ftps, and rsync
   protocols. The following syntaxes may be used with them:

   ·   ssh://[user@]host.xz[:port]/path/to/repo.git/ [...]
   An alternative scp-like syntax may also be used with the ssh protocol:

   ·   [user@]host.xz:path/to/repo.git/
于 2012-12-04T20:23:36.837 に答える