●前提条件
windows10
Start Command Pronpt with Ruby
bibucket登録済み
sorcetree インストール済み
ssh-key 作成確認後bitbucketの設定欄において設定済
●試したこと
git remote add origin https://myname@bitbucket.org/myname/myname.git
とStart Command Pronpt with Rubyで入力
fatal: remote origin already exists.
と出力される
●解決したいこと
git push -u origin masterでローカルのGitリポジトリをBitbucketに移行したい
●発生している問題、エラーメッセージ
git push -u origin masterを入力
no such identity: /Users/myname/.ssh/bitbucket/id_rsa: No such file or directory
git@bitbucket.org: Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
と出力
●ソースコード
●問題の発生した環境
●追加で試したこと
https://teratail.com/questions/49935?link=qa_related_pc
上記のurlに書いてあった
git remote rm origin として一旦 origin を消してから再び git remote add で remote を登録し、pushしてみましたが駄目でした
その際のエラーコード
fatal: 'https://myname@bitbucket.org/myname/myname.git' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists
●質問への追記・修正の依頼への回答
① git remove -v で、現在の設定を確認してみたら、どうなっているでしょうか?
git remove -vを入力したところ
git: 'remove' is not a git command. See 'git --help'.
The most similar command is
remote
と出力されたのでremoteで再試行しました
git remote -v
結果
origin https://myname@bitbucket.org/myname/myname.git (fetch)
origin https://myname@bitbucket.org/myname/myname.git (push)
と出力されました
② また、質問では https://myname@bitbucket.org と、https:// ではなくスペースが入ってしまっているのですが、これは記載間違いでしょうか。
スペースを消したらうまくいきました。
ありがとうございます!!!!!
回答1件
あなたの回答
tips
プレビュー