Answers for "github access token using"

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
3

github personal token

# go to github > settings > developer settings > personal access tokens
# create token

git clone https://<ACCESS_TOKEN>@github.com/<USERNAME>/<REPO>.git
Posted by: Guest on October-22-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language