Password authentication is temporarily disabled as part of a brownout. Please use a personal access token instead [duplicate]

  1. Generate a new token from GitHub’s developer settings

  2. Update the remote URL:

    git remote set-url origin https://<token>@github.com/<Git_URL>
    
  3. Pull once:

    git pull https://<token>@<Git_URL>.git
    

And you are good to go.

Leave a Comment