gitextract_n0is0qh2/ ├── .Rbuildignore ├── .github/ │ ├── .gitignore │ ├── CODEOWNERS │ ├── CODE_OF_CONDUCT.md │ └── workflows/ │ ├── R-CMD-check.yaml │ ├── pkgdown.yaml │ ├── pr-commands.yaml │ ├── rhub.yaml │ └── test-coverage.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── gh-package.R │ ├── gh.R │ ├── gh_gql.R │ ├── gh_rate_limit.R │ ├── gh_request.R │ ├── gh_response.R │ ├── gh_token.R │ ├── gh_whoami.R │ ├── git.R │ ├── import-standalone-purrr.R │ ├── pagination.R │ ├── print.R │ └── utils.R ├── README.Rmd ├── README.md ├── _pkgdown.yml ├── air.toml ├── codecov.yml ├── gh.Rproj ├── inst/ │ └── WORDLIST ├── man/ │ ├── gh-package.Rd │ ├── gh.Rd │ ├── gh_gql.Rd │ ├── gh_next.Rd │ ├── gh_rate_limit.Rd │ ├── gh_token.Rd │ ├── gh_tree_remote.Rd │ ├── gh_whoami.Rd │ └── print.gh_response.Rd ├── tests/ │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── gh.md │ │ │ ├── gh_rate_limit.md │ │ │ ├── gh_request.md │ │ │ ├── gh_response.md │ │ │ ├── gh_token.md │ │ │ ├── gh_whoami.md │ │ │ ├── pagination.md │ │ │ ├── print.md │ │ │ └── utils.md │ │ ├── helper-offline.R │ │ ├── helper.R │ │ ├── setup.R │ │ ├── test-gh.R │ │ ├── test-gh_rate_limit.R │ │ ├── test-gh_request.R │ │ ├── test-gh_response.R │ │ ├── test-gh_token.R │ │ ├── test-gh_whoami.R │ │ ├── test-git.R │ │ ├── test-mock-repos.R │ │ ├── test-old-templates.R │ │ ├── test-pagination.R │ │ ├── test-print.R │ │ ├── test-spelling.R │ │ └── test-utils.R │ └── testthat.R └── vignettes/ ├── .gitignore └── managing-personal-access-tokens.Rmd