Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vyach-vasiliev/8f98c96d19c621e8887e928ee2b5a61e to your computer and use it in GitHub Desktop.
Save vyach-vasiliev/8f98c96d19c621e8887e928ee2b5a61e to your computer and use it in GitHub Desktop.
Clone a GitHub repository using a Personal Access Token
export GITHUB_USER=user
export GITHUB_TOKEN=secret
export GITHUB_REPOSITORY=owner/repo-path
git clone https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}
# or
git clone ${GITHUB_TOKEN}@github.com/{GITHUB_REPOSITORY}.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment