Get help with GitHub personal access tokens
A personal access token (PAT) is needed for certain tasks usethis does via the GitHub API, such as creating a repository, a fork, or a pull request. If you use HTTPS remotes, your PAT is also used when interacting with GitHub as a conventional Git remote. These functions help you get and manage your PAT:
gh_token_help()
guides you through token troubleshooting and setup
create_github_token()
opens a browser window to the GitHub form to
generate a PAT, with suggested scopes pre-selected. It also offers advice
on storing your PAT.
gitcreds::gitcreds_set()
helps you register your PAT with the Git
credential manager used by your operating system. Later, other packages,
such as usethis, gert, and gh can automatically retrieve that PAT and use
it to work with GitHub on your behalf.
Usually, the first time the PAT is retrieved in an R session, it is cached in an environment variable, for easier reuse for the duration of that R session. After initial acquisition and storage, all of this should happen automatically in the background.
Git/GitHub credential management is covered in a dedicated article: Managing Git(Hub) Credentials
create_github_token( scopes = c("repo", "user", "gist", "workflow"), description = "R:GITHUB_PAT", host = NULL ) gh_token_help(host = NULL)
scopes |
Character vector of token scopes, pre-selected in the web form. Final choices are made in the GitHub form. Read more about GitHub API scopes at https://docs.github.com/apps/building-oauth-apps/understanding-scopes-for-oauth-apps/. |
description |
Short description or nickname for the token. You might (eventually) have multiple tokens on your GitHub account and a label can help you keep track of what each token is for. |
host |
GitHub host to target, passed to the For a hypothetical GitHub Enterprise instance, either "https://github.acme.com/api/v3" or "https://github.acme.com" is acceptable. |
create_github_token()
has previously gone by some other names:
browse_github_token()
and browse_github_pat()
.
Nothing
gh::gh_whoami()
for information on an existing token and
gitcreds::gitcreds_set()
and gitcreds::gitcreds_get()
for a secure way
to store and retrieve your PAT.
## Not run: create_github_token() ## End(Not run) ## Not run: gh_token_help() ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.