2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

EclipseのGitで「リモートリポジトリ参照を取得できません」と出た

Last updated at Posted at 2022-01-09

環境

Ecllipse 2021-12 (4.22.0)
Windows 11
Github 2022/1時点

エラーの状態

Eclipseからリモートリポジトリにpushして、「トランスポートエラー:リモートリポジト参照を取得できませんhttps://github.com******.git 未認証」とエラーが出てきた状態。
スクリーンショット (30).png

対処法

未認証とのことなので、接続と認証の確認をする。

EclipseでEgitのユーザ確認

ウィンドウ>バージョン管理(チーム)>Git>構成を開いてUserが登録されているか確認。
登録されていない場合は、エントリーの追加をクリックして、登録。
キーにuser.nameと入力し、値に自分のGitHubのユーザ名を入力し、追加をクリック。
キーにuser.emailと入力し、値に自分のGitHubで登録したメールアドレスを入力し、追加をクリック。
スクリーンショット (34).png

GitHubの認証情報を確認

通信プロトコルに合った認証方法を使う。
自分はHTTPSを使うので、個人アクセストークン認証を利用。
個人アクセストークン認証のやり方は公式に載っているのでこちらを参照。
発行された個人アクセストークンはどこかにメモして置いて下さい。

Eclipseを開いて、プロジェクトで右クリック、チーム>リモート>プッシュを選択。
接続はhttpsを選択。
ユーザは自分のGitHubのユーザ名をパスワードは先ほど発行したアクセストークンを入力して、次へをクリック。

スクリーンショット (35).png

参考文献

2
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?