Answers for "how to push code to github with personal access token"

10

How to push code to your github repository using token authentication

git remote set-url origin https://<githubtoken>@github.com/<username>/<repositoryname>.git
Posted by: Guest on September-30-2021
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 push code to github with personal access token"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language