0
C:\Dropbox\Apps\rails_projects\ABCD>git push -u origin master
ssh: github: no address associated with name
fatal: Could not read from remote repository.

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

/肩をすくめる。私はこれを何十回もやりました。ここで何が起こったのかわかりません。他のアプリをプッシュできます。何がユニークなのか、ここ...

動作している他のアプリ:

C:\Dropbox\Apps\rails_projects\ecorebox>git remote -v
heroku  git@heroku.com:ecorebox.git (fetch)
heroku  git@heroku.com:ecorebox.git (push)
origin  https://github.com/Mallanaga/ecorebox.git (fetch)
origin  https://github.com/Mallanaga/ecorebox.git (push)

新しいアプリ、機能しない:

C:\Dropbox\Apps\rails_projects\ABCD>git remote -v
origin  ssh://git@github/Mallanaga/ABCD.git (fetch)
origin  ssh://git@github/Mallanaga/ABCD.git (push)

この新しいアプリが ssh を主張している理由がわかりません。それは新しいことですか?

4

2 に答える 2

2

試す

ssh://git@github.com/Mallanaga/ABCD.git

それ以外の

ssh://git@github/Mallanaga/ABCD.git

コマンドは

git remote set-url origin ssh://git@github.com/Mallanaga/ABCD.git
于 2013-09-07T02:18:39.720 に答える