gitextract_klaxvgmx/ ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github/ │ ├── dependabot.yml │ └── workflows/ │ ├── check-dist.yml │ ├── codeql-analysis.yml │ ├── licensed.yml │ ├── publish-immutable-actions.yml │ ├── test.yml │ ├── update-main-version.yml │ └── update-test-ubuntu-git.yml ├── .gitignore ├── .licensed.yml ├── .licenses/ │ └── npm/ │ ├── @actions/ │ │ ├── core.dep.yml │ │ ├── exec.dep.yml │ │ ├── github.dep.yml │ │ ├── http-client.dep.yml │ │ ├── io.dep.yml │ │ └── tool-cache.dep.yml │ ├── @fastify/ │ │ └── busboy.dep.yml │ ├── @octokit/ │ │ ├── auth-token.dep.yml │ │ ├── core.dep.yml │ │ ├── endpoint.dep.yml │ │ ├── graphql.dep.yml │ │ ├── openapi-types-20.0.0.dep.yml │ │ ├── openapi-types-22.1.0.dep.yml │ │ ├── plugin-paginate-rest.dep.yml │ │ ├── plugin-rest-endpoint-methods.dep.yml │ │ ├── request-error.dep.yml │ │ ├── request.dep.yml │ │ ├── types-12.6.0.dep.yml │ │ └── types-13.4.1.dep.yml │ ├── before-after-hook.dep.yml │ ├── deprecation.dep.yml │ ├── once.dep.yml │ ├── semver.dep.yml │ ├── tunnel.dep.yml │ ├── undici.dep.yml │ ├── universal-user-agent.dep.yml │ ├── uuid-3.4.0.dep.yml │ ├── uuid-8.3.2.dep.yml │ ├── uuid-9.0.1.dep.yml │ └── wrappy.dep.yml ├── .prettierignore ├── .prettierrc.json ├── CHANGELOG.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __test__/ │ ├── git-auth-helper.test.ts │ ├── git-command-manager.test.ts │ ├── git-directory-helper.test.ts │ ├── git-version.test.ts │ ├── input-helper.test.ts │ ├── modify-work-tree.sh │ ├── override-git-version.cmd │ ├── override-git-version.sh │ ├── ref-helper.test.ts │ ├── retry-helper.test.ts │ ├── url-helper.test.ts │ ├── verify-basic.sh │ ├── verify-clean.sh │ ├── verify-fetch-filter.sh │ ├── verify-fetch-tags.sh │ ├── verify-lfs.sh │ ├── verify-no-unstaged-changes.sh │ ├── verify-side-by-side.sh │ ├── verify-sparse-checkout-non-cone-mode.sh │ ├── verify-sparse-checkout.sh │ ├── verify-submodules-false.sh │ ├── verify-submodules-recursive.sh │ ├── verify-submodules-true.sh │ └── verify-worktree.sh ├── action.yml ├── adrs/ │ └── 0153-checkout-v2.md ├── dist/ │ ├── index.js │ └── problem-matcher.json ├── images/ │ ├── test-ubuntu-git.Dockerfile │ └── test-ubuntu-git.md ├── jest.config.js ├── package.json ├── src/ │ ├── fs-helper.ts │ ├── git-auth-helper.ts │ ├── git-command-manager.ts │ ├── git-directory-helper.ts │ ├── git-source-provider.ts │ ├── git-source-settings.ts │ ├── git-version.ts │ ├── github-api-helper.ts │ ├── input-helper.ts │ ├── main.ts │ ├── misc/ │ │ ├── generate-docs.ts │ │ ├── licensed-check.sh │ │ ├── licensed-download.sh │ │ └── licensed-generate.sh │ ├── ref-helper.ts │ ├── regexp-helper.ts │ ├── retry-helper.ts │ ├── state-helper.ts │ ├── url-helper.ts │ └── workflow-context-helper.ts └── tsconfig.json