0
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.

GitHubからアクセストークンの有効期限切れメールが届いた際の対策方法

Last updated at Posted at 2022-05-11

概要

「[GitHub] Your personal access token has expired」 というタイトルのメールがGitHubから送られてきた。
既に多くの記事で対策方法が記載されているが、自分の備忘録のため記載する。

アクセストークン発行

GitHubにアクセスして、右上の自身のアイコンをクリックし、「Settings」ボンタンをクリックする。
スクリーンショット 2022-05-09 110445.png

「Developer settings」ボタンをクリックする。

スクリーンショット 2022-05-09 110525.png

「Personal access tokens」ボタンをクリックし、「Generate new token」ボタンをクリック。

スクリーンショット 2022-05-09 110601.png

下記画面に遷移するので任意の設定をしてアクセストークンを発行する。
スクリーンショット 2022-05-09 111954.png

config ファイル変更

必要に応じて設定ファイルの変更を行う。
発行したアクセストークンの情報をgitのconfigファイルに記載する。

> git config --global --edit

// ローカルの場合
git config --local --edit

[url "https://[発行したアクセストークン]:x-oauth-basic@github.com/"]
    insteadOf = https://github.com/

上記設定により、下記URLを含むコマンドを叩く際にアクセストークンの情報が追加されるようになる。

https://github.com/

下記の様に変換される。

https://[発行したアクセストークン]:x-oauth-basic@github.com/
0
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
0
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?