Answers for "generate github access token"

3

generate github access token

$ ssh-keygen -t ed25519 -C "[email protected]"
Posted by: Guest on November-11-2020
2

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 "Shell/Bash"

Browse Popular Code Answers by Language