GitLabにてリポジトリを作成し、ローカルのファイルをそのリポジトリにプッシュしたいです。
秘密鍵と公開鍵は作成しており、GitLabには設定済みです。
.ssh/configには以下のように設定しております。
Host example.com HostName example.com User user TCPKeepAlive yes identitiesonly yes IdentityFile ~/.ssh/id_rsa port 22
git remote -vの結果も指定のリポジトリとなっており、git addとcommitは成功しました。
push時に以下のようなエラーが出ます。
$ git push origin master Load key "/c/Users/user/.ssh/id_rsa": invalid format example.com: Permission denied (publickey,gssapi-keyex,gssapi-with-mic). fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
エラーの原因が分かりません。
invalid formatが出ているのでid_rsaの形式がおかしいのでしょうか?
ご指導お願いいたします。
回答1件
あなたの回答
tips
プレビュー