You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Current »

GitHub seems like removed password authentication as of August 13, 2021, and personal access token is recommended by their policy. Below is the error message when I run git clone

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


To create a Personal Access Token through the GitHub online portal, you will need to follow below steps

  1. Log into GitHub
  2. Click your personal picture the the right hand menu and navigate to Settings → Developer settings → Personal access tokens → Generate new token





  3. You can select your required features, and below is for repository access


  4. If everything goes fine, you will get your token like below:


To clone with the personal token

#!/bin/zsh
git config --global user.name "Chun Kang"
git config --global user.email "ck@ckii.com"
GITHUB_USER_TOKEN=your_user_token
git clone https://$GITHUB_USER_TOKEN:x-oauth-basic@github.com/ck/ck.io.git


  • No labels