Answers for "how to get a personal access token in git"

2

git access token

Creating a personal access token : 
https://docs.github.com/en/authentication/keeping-your-account-and-data-secure/creating-a-personal-access-token

THEN :
git remote -v
git remote set-url origin https://<username>:<token access>@github.com:<username>/<repo>.git

exemple :
git remote set-url origin https://Trinix:[email protected]:Trinix/NFT-Platform.git
Posted by: Guest on January-11-2022
8

Github Personal Access Token

# How to set up Github Personal Access Token (from Terminal)
# First you need to set the remote URL of your repo
git remote add origin remote_url_here
# then you update the remote URL with your token
git remote set-url origin https://put_username_here:[email protected]/put_username_here/repo-name.git
Posted by: Guest on August-16-2021

Code answers related to "how to get a personal access token in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language