2017-11-13 13 views
0

Ionicアプリケーションで作業していますが、Ionic Dashboardを使用して新しいプロジェクトを作成しました。後でこのコマンドを使用して私のアプリケーションに接続しました:ionic start --pro-id my-idssh:connect to host git.ionicjs.comポート22:接続がタイムアウトしました

しかし、私は、次のコマンドを使用してダッシュボードまでの私のコードをプッシュしよう:git push ionic master私はこのエラーを受け取っ:

ssh: connect to host git.ionicjs.com port 22: Connection timed out 
fatal: Could not read from remote repository. 

Please make sure you have the correct access rights 
and the repository exists. 

私は設定でHTTPプロトコルの代わりに、にsshを使用しようとしました

  1. git config --local -e
  2. :以下番目の手順は、以下のファイル、 fatal: unable to access 'https://git.ionicjs.com:username/myproject.git/': Port number ended with 'b'

    任意のアイデアこの問題を解決するために:0

  3. url = https://git.ionicjs.com/usename/myproject.git

しかし、STILは、この問題を持っていますか?ありがとうございました。

答えて

0
  1. sshの問題は、git.ionicjs.comに2つの異なるIPアドレスがあることです。そのうちの1つ(35.162.243.99)はポート22を開いており、もう1つ(35.162.243.97)は開いていません。問題をionicjs.comに報告することをお勧めします。

  2. HTTP URLの正しい構文は、https://git.ionicjs.com:username/myproject.git/ではなく、https://git.ionicjs.com/username/myproject.gitです。

関連する問題