7
8

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 3 years have passed since last update.

Visual Studio CodeでGit Push時の認証ができなくなった

Posted at

# VC Codeでgit push時に認証できなくなった
VC Codeでアカウントを切り替えて、git pushをしようと思い下記の画面でパスワードを入れると
settingToken4.png

下記のエラーが出て困りました

Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.

どうやら、ブラウザのGitHubのページからトークンを生成しなければならないようです

こちらの真ん中あたり

備忘録のため手順をまとめました

  1. GitHubのページをブラウザで開いて、settingsを選択
    settingToken1.png

  2. Developer settingsを選択
    settingToken3.png

  3. トークンを設定する

    • 任意のトーク名を入力
    • トークンの有効期限を選択
    • 下記にチェックを入れる
      • repo
      • admin:repo_hock
      • delete_repo
    • Generate Tokenボタンを押下
      settingToken2.png
  4. 次の画面でトークンが発行されるのでコピーする

  5. VS Codeのパスワード入力で、トークンを貼り付けて認証する
    settingToken4.png

7
8
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
7
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?