├── .cirrus.yml ├── .clang-format ├── .editorconfig ├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml └── workflows │ ├── check-style.yml │ ├── check-whitespace.yml │ ├── coverity.yml │ ├── l10n.yml │ ├── main.yml │ ├── monitor-components.yml │ └── nano-server.yml ├── .gitignore ├── .gitlab-ci.yml ├── .gitmodules ├── .mailmap ├── .tsan-suppressions ├── ARCHITECTURE.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── COPYING ├── Cargo.toml ├── Documentation ├── .gitignore ├── BreakingChanges.adoc ├── CodingGuidelines ├── DecisionMaking.adoc ├── Makefile ├── MyFirstContribution.adoc ├── MyFirstObjectWalk.adoc ├── RelNotes │ ├── 1.5.0.1.adoc │ ├── 1.5.0.2.adoc │ ├── 1.5.0.3.adoc │ ├── 1.5.0.4.adoc │ ├── 1.5.0.5.adoc │ ├── 1.5.0.6.adoc │ ├── 1.5.0.7.adoc │ ├── 1.5.0.adoc │ ├── 1.5.1.1.adoc │ ├── 1.5.1.2.adoc │ ├── 1.5.1.3.adoc │ ├── 1.5.1.4.adoc │ ├── 1.5.1.5.adoc │ ├── 1.5.1.6.adoc │ ├── 1.5.1.adoc │ ├── 1.5.2.1.adoc │ ├── 1.5.2.2.adoc │ ├── 1.5.2.3.adoc │ ├── 1.5.2.4.adoc │ ├── 1.5.2.5.adoc │ ├── 1.5.2.adoc │ ├── 1.5.3.1.adoc │ ├── 1.5.3.2.adoc │ ├── 1.5.3.3.adoc │ ├── 1.5.3.4.adoc │ ├── 1.5.3.5.adoc │ ├── 1.5.3.6.adoc │ ├── 1.5.3.7.adoc │ ├── 1.5.3.8.adoc │ ├── 1.5.3.adoc │ ├── 1.5.4.1.adoc │ ├── 1.5.4.2.adoc │ ├── 1.5.4.3.adoc │ ├── 1.5.4.4.adoc │ ├── 1.5.4.5.adoc │ ├── 1.5.4.6.adoc │ ├── 1.5.4.7.adoc │ ├── 1.5.4.adoc │ ├── 1.5.5.1.adoc │ ├── 1.5.5.2.adoc │ ├── 1.5.5.3.adoc │ ├── 1.5.5.4.adoc │ ├── 1.5.5.5.adoc │ ├── 1.5.5.6.adoc │ ├── 1.5.5.adoc │ ├── 1.5.6.1.adoc │ ├── 1.5.6.2.adoc │ ├── 1.5.6.3.adoc │ ├── 1.5.6.4.adoc │ ├── 1.5.6.5.adoc │ ├── 1.5.6.6.adoc │ ├── 1.5.6.adoc │ ├── 1.6.0.1.adoc │ ├── 1.6.0.2.adoc │ ├── 1.6.0.3.adoc │ ├── 1.6.0.4.adoc │ ├── 1.6.0.5.adoc │ ├── 1.6.0.6.adoc │ ├── 1.6.0.adoc │ ├── 1.6.1.1.adoc │ ├── 1.6.1.2.adoc │ ├── 1.6.1.3.adoc │ ├── 1.6.1.4.adoc │ ├── 1.6.1.adoc │ ├── 1.6.2.1.adoc │ ├── 1.6.2.2.adoc │ ├── 1.6.2.3.adoc │ ├── 1.6.2.4.adoc │ ├── 1.6.2.5.adoc │ ├── 1.6.2.adoc │ ├── 1.6.3.1.adoc │ ├── 1.6.3.2.adoc │ ├── 1.6.3.3.adoc │ ├── 1.6.3.4.adoc │ ├── 1.6.3.adoc │ ├── 1.6.4.1.adoc │ ├── 1.6.4.2.adoc │ ├── 1.6.4.3.adoc │ ├── 1.6.4.4.adoc │ ├── 1.6.4.5.adoc │ ├── 1.6.4.adoc │ ├── 1.6.5.1.adoc │ ├── 1.6.5.2.adoc │ ├── 1.6.5.3.adoc │ ├── 1.6.5.4.adoc │ ├── 1.6.5.5.adoc │ ├── 1.6.5.6.adoc │ ├── 1.6.5.7.adoc │ ├── 1.6.5.8.adoc │ ├── 1.6.5.9.adoc │ ├── 1.6.5.adoc │ ├── 1.6.6.1.adoc │ ├── 1.6.6.2.adoc │ ├── 1.6.6.3.adoc │ ├── 1.6.6.adoc │ ├── 1.7.0.1.adoc │ ├── 1.7.0.2.adoc │ ├── 1.7.0.3.adoc │ ├── 1.7.0.4.adoc │ ├── 1.7.0.5.adoc │ ├── 1.7.0.6.adoc │ ├── 1.7.0.7.adoc │ ├── 1.7.0.8.adoc │ ├── 1.7.0.9.adoc │ ├── 1.7.0.adoc │ ├── 1.7.1.1.adoc │ ├── 1.7.1.2.adoc │ ├── 1.7.1.3.adoc │ ├── 1.7.1.4.adoc │ ├── 1.7.1.adoc │ ├── 1.7.10.1.adoc │ ├── 1.7.10.2.adoc │ ├── 1.7.10.3.adoc │ ├── 1.7.10.4.adoc │ ├── 1.7.10.5.adoc │ ├── 1.7.10.adoc │ ├── 1.7.11.1.adoc │ ├── 1.7.11.2.adoc │ ├── 1.7.11.3.adoc │ ├── 1.7.11.4.adoc │ ├── 1.7.11.5.adoc │ ├── 1.7.11.6.adoc │ ├── 1.7.11.7.adoc │ ├── 1.7.11.adoc │ ├── 1.7.12.1.adoc │ ├── 1.7.12.2.adoc │ ├── 1.7.12.3.adoc │ ├── 1.7.12.4.adoc │ ├── 1.7.12.adoc │ ├── 1.7.2.1.adoc │ ├── 1.7.2.2.adoc │ ├── 1.7.2.3.adoc │ ├── 1.7.2.4.adoc │ ├── 1.7.2.5.adoc │ ├── 1.7.2.adoc │ ├── 1.7.3.1.adoc │ ├── 1.7.3.2.adoc │ ├── 1.7.3.3.adoc │ ├── 1.7.3.4.adoc │ ├── 1.7.3.5.adoc │ ├── 1.7.3.adoc │ ├── 1.7.4.1.adoc │ ├── 1.7.4.2.adoc │ ├── 1.7.4.3.adoc │ ├── 1.7.4.4.adoc │ ├── 1.7.4.5.adoc │ ├── 1.7.4.adoc │ ├── 1.7.5.1.adoc │ ├── 1.7.5.2.adoc │ ├── 1.7.5.3.adoc │ ├── 1.7.5.4.adoc │ ├── 1.7.5.adoc │ ├── 1.7.6.1.adoc │ ├── 1.7.6.2.adoc │ ├── 1.7.6.3.adoc │ ├── 1.7.6.4.adoc │ ├── 1.7.6.5.adoc │ ├── 1.7.6.6.adoc │ ├── 1.7.6.adoc │ ├── 1.7.7.1.adoc │ ├── 1.7.7.2.adoc │ ├── 1.7.7.3.adoc │ ├── 1.7.7.4.adoc │ ├── 1.7.7.5.adoc │ ├── 1.7.7.6.adoc │ ├── 1.7.7.7.adoc │ ├── 1.7.7.adoc │ ├── 1.7.8.1.adoc │ ├── 1.7.8.2.adoc │ ├── 1.7.8.3.adoc │ ├── 1.7.8.4.adoc │ ├── 1.7.8.5.adoc │ ├── 1.7.8.6.adoc │ ├── 1.7.8.adoc │ ├── 1.7.9.1.adoc │ ├── 1.7.9.2.adoc │ ├── 1.7.9.3.adoc │ ├── 1.7.9.4.adoc │ ├── 1.7.9.5.adoc │ ├── 1.7.9.6.adoc │ ├── 1.7.9.7.adoc │ ├── 1.7.9.adoc │ ├── 1.8.0.1.adoc │ ├── 1.8.0.2.adoc │ ├── 1.8.0.3.adoc │ ├── 1.8.0.adoc │ ├── 1.8.1.1.adoc │ ├── 1.8.1.2.adoc │ ├── 1.8.1.3.adoc │ ├── 1.8.1.4.adoc │ ├── 1.8.1.5.adoc │ ├── 1.8.1.6.adoc │ ├── 1.8.1.adoc │ ├── 1.8.2.1.adoc │ ├── 1.8.2.2.adoc │ ├── 1.8.2.3.adoc │ ├── 1.8.2.adoc │ ├── 1.8.3.1.adoc │ ├── 1.8.3.2.adoc │ ├── 1.8.3.3.adoc │ ├── 1.8.3.4.adoc │ ├── 1.8.3.adoc │ ├── 1.8.4.1.adoc │ ├── 1.8.4.2.adoc │ ├── 1.8.4.3.adoc │ ├── 1.8.4.4.adoc │ ├── 1.8.4.5.adoc │ ├── 1.8.4.adoc │ ├── 1.8.5.1.adoc │ ├── 1.8.5.2.adoc │ ├── 1.8.5.3.adoc │ ├── 1.8.5.4.adoc │ ├── 1.8.5.5.adoc │ ├── 1.8.5.6.adoc │ ├── 1.8.5.adoc │ ├── 1.9.0.adoc │ ├── 1.9.1.adoc │ ├── 1.9.2.adoc │ ├── 1.9.3.adoc │ ├── 1.9.4.adoc │ ├── 1.9.5.adoc │ ├── 2.0.0.adoc │ ├── 2.0.1.adoc │ ├── 2.0.2.adoc │ ├── 2.0.3.adoc │ ├── 2.0.4.adoc │ ├── 2.0.5.adoc │ ├── 2.1.0.adoc │ ├── 2.1.1.adoc │ ├── 2.1.2.adoc │ ├── 2.1.3.adoc │ ├── 2.1.4.adoc │ ├── 2.10.0.adoc │ ├── 2.10.1.adoc │ ├── 2.10.2.adoc │ ├── 2.10.3.adoc │ ├── 2.10.4.adoc │ ├── 2.10.5.adoc │ ├── 2.11.0.adoc │ ├── 2.11.1.adoc │ ├── 2.11.2.adoc │ ├── 2.11.3.adoc │ ├── 2.11.4.adoc │ ├── 2.12.0.adoc │ ├── 2.12.1.adoc │ ├── 2.12.2.adoc │ ├── 2.12.3.adoc │ ├── 2.12.4.adoc │ ├── 2.12.5.adoc │ ├── 2.13.0.adoc │ ├── 2.13.1.adoc │ ├── 2.13.2.adoc │ ├── 2.13.3.adoc │ ├── 2.13.4.adoc │ ├── 2.13.5.adoc │ ├── 2.13.6.adoc │ ├── 2.13.7.adoc │ ├── 2.14.0.adoc │ ├── 2.14.1.adoc │ ├── 2.14.2.adoc │ ├── 2.14.3.adoc │ ├── 2.14.4.adoc │ ├── 2.14.5.adoc │ ├── 2.14.6.adoc │ ├── 2.15.0.adoc │ ├── 2.15.1.adoc │ ├── 2.15.2.adoc │ ├── 2.15.3.adoc │ ├── 2.15.4.adoc │ ├── 2.16.0.adoc │ ├── 2.16.1.adoc │ ├── 2.16.2.adoc │ ├── 2.16.3.adoc │ ├── 2.16.4.adoc │ ├── 2.16.5.adoc │ ├── 2.16.6.adoc │ ├── 2.17.0.adoc │ ├── 2.17.1.adoc │ ├── 2.17.2.adoc │ ├── 2.17.3.adoc │ ├── 2.17.4.adoc │ ├── 2.17.5.adoc │ ├── 2.17.6.adoc │ ├── 2.18.0.adoc │ ├── 2.18.1.adoc │ ├── 2.18.2.adoc │ ├── 2.18.3.adoc │ ├── 2.18.4.adoc │ ├── 2.18.5.adoc │ ├── 2.19.0.adoc │ ├── 2.19.1.adoc │ ├── 2.19.2.adoc │ ├── 2.19.3.adoc │ ├── 2.19.4.adoc │ ├── 2.19.5.adoc │ ├── 2.19.6.adoc │ ├── 2.2.0.adoc │ ├── 2.2.1.adoc │ ├── 2.2.2.adoc │ ├── 2.2.3.adoc │ ├── 2.20.0.adoc │ ├── 2.20.1.adoc │ ├── 2.20.2.adoc │ ├── 2.20.3.adoc │ ├── 2.20.4.adoc │ ├── 2.20.5.adoc │ ├── 2.21.0.adoc │ ├── 2.21.1.adoc │ ├── 2.21.2.adoc │ ├── 2.21.3.adoc │ ├── 2.21.4.adoc │ ├── 2.22.0.adoc │ ├── 2.22.1.adoc │ ├── 2.22.2.adoc │ ├── 2.22.3.adoc │ ├── 2.22.4.adoc │ ├── 2.22.5.adoc │ ├── 2.23.0.adoc │ ├── 2.23.1.adoc │ ├── 2.23.2.adoc │ ├── 2.23.3.adoc │ ├── 2.23.4.adoc │ ├── 2.24.0.adoc │ ├── 2.24.1.adoc │ ├── 2.24.2.adoc │ ├── 2.24.3.adoc │ ├── 2.24.4.adoc │ ├── 2.25.0.adoc │ ├── 2.25.1.adoc │ ├── 2.25.2.adoc │ ├── 2.25.3.adoc │ ├── 2.25.4.adoc │ ├── 2.25.5.adoc │ ├── 2.26.0.adoc │ ├── 2.26.1.adoc │ ├── 2.26.2.adoc │ ├── 2.26.3.adoc │ ├── 2.27.0.adoc │ ├── 2.27.1.adoc │ ├── 2.28.0.adoc │ ├── 2.28.1.adoc │ ├── 2.29.0.adoc │ ├── 2.29.1.adoc │ ├── 2.29.2.adoc │ ├── 2.29.3.adoc │ ├── 2.3.0.adoc │ ├── 2.3.1.adoc │ ├── 2.3.10.adoc │ ├── 2.3.2.adoc │ ├── 2.3.3.adoc │ ├── 2.3.4.adoc │ ├── 2.3.5.adoc │ ├── 2.3.6.adoc │ ├── 2.3.7.adoc │ ├── 2.3.8.adoc │ ├── 2.3.9.adoc │ ├── 2.30.0.adoc │ ├── 2.30.1.adoc │ ├── 2.30.2.adoc │ ├── 2.30.3.adoc │ ├── 2.30.4.adoc │ ├── 2.30.5.adoc │ ├── 2.30.6.adoc │ ├── 2.30.7.adoc │ ├── 2.30.8.adoc │ ├── 2.30.9.adoc │ ├── 2.31.0.adoc │ ├── 2.31.1.adoc │ ├── 2.31.2.adoc │ ├── 2.31.3.adoc │ ├── 2.31.4.adoc │ ├── 2.31.5.adoc │ ├── 2.31.6.adoc │ ├── 2.31.7.adoc │ ├── 2.31.8.adoc │ ├── 2.32.0.adoc │ ├── 2.32.1.adoc │ ├── 2.32.2.adoc │ ├── 2.32.3.adoc │ ├── 2.32.4.adoc │ ├── 2.32.5.adoc │ ├── 2.32.6.adoc │ ├── 2.32.7.adoc │ ├── 2.33.0.adoc │ ├── 2.33.1.adoc │ ├── 2.33.2.adoc │ ├── 2.33.3.adoc │ ├── 2.33.4.adoc │ ├── 2.33.5.adoc │ ├── 2.33.6.adoc │ ├── 2.33.7.adoc │ ├── 2.33.8.adoc │ ├── 2.34.0.adoc │ ├── 2.34.1.adoc │ ├── 2.34.2.adoc │ ├── 2.34.3.adoc │ ├── 2.34.4.adoc │ ├── 2.34.5.adoc │ ├── 2.34.6.adoc │ ├── 2.34.7.adoc │ ├── 2.34.8.adoc │ ├── 2.35.0.adoc │ ├── 2.35.1.adoc │ ├── 2.35.2.adoc │ ├── 2.35.3.adoc │ ├── 2.35.4.adoc │ ├── 2.35.5.adoc │ ├── 2.35.6.adoc │ ├── 2.35.7.adoc │ ├── 2.35.8.adoc │ ├── 2.36.0.adoc │ ├── 2.36.1.adoc │ ├── 2.36.2.adoc │ ├── 2.36.3.adoc │ ├── 2.36.4.adoc │ ├── 2.36.5.adoc │ ├── 2.36.6.adoc │ ├── 2.37.0.adoc │ ├── 2.37.1.adoc │ ├── 2.37.2.adoc │ ├── 2.37.3.adoc │ ├── 2.37.4.adoc │ ├── 2.37.5.adoc │ ├── 2.37.6.adoc │ ├── 2.37.7.adoc │ ├── 2.38.0.adoc │ ├── 2.38.1.adoc │ ├── 2.38.2.adoc │ ├── 2.38.3.adoc │ ├── 2.38.4.adoc │ ├── 2.38.5.adoc │ ├── 2.39.0.adoc │ ├── 2.39.1.adoc │ ├── 2.39.2.adoc │ ├── 2.39.3.adoc │ ├── 2.39.4.adoc │ ├── 2.39.5.adoc │ ├── 2.4.0.adoc │ ├── 2.4.1.adoc │ ├── 2.4.10.adoc │ ├── 2.4.11.adoc │ ├── 2.4.12.adoc │ ├── 2.4.2.adoc │ ├── 2.4.3.adoc │ ├── 2.4.4.adoc │ ├── 2.4.5.adoc │ ├── 2.4.6.adoc │ ├── 2.4.7.adoc │ ├── 2.4.8.adoc │ ├── 2.4.9.adoc │ ├── 2.40.0.adoc │ ├── 2.40.1.adoc │ ├── 2.40.2.adoc │ ├── 2.40.3.adoc │ ├── 2.40.4.adoc │ ├── 2.41.0.adoc │ ├── 2.41.1.adoc │ ├── 2.41.2.adoc │ ├── 2.41.3.adoc │ ├── 2.42.0.adoc │ ├── 2.42.1.adoc │ ├── 2.42.2.adoc │ ├── 2.42.3.adoc │ ├── 2.42.4.adoc │ ├── 2.43.0.adoc │ ├── 2.43.1.adoc │ ├── 2.43.2.adoc │ ├── 2.43.3.adoc │ ├── 2.43.4.adoc │ ├── 2.43.5.adoc │ ├── 2.43.6.adoc │ ├── 2.43.7.adoc │ ├── 2.44.0.adoc │ ├── 2.44.1.adoc │ ├── 2.44.2.adoc │ ├── 2.44.3.adoc │ ├── 2.44.4.adoc │ ├── 2.45.0.adoc │ ├── 2.45.1.adoc │ ├── 2.45.2.adoc │ ├── 2.45.3.adoc │ ├── 2.45.4.adoc │ ├── 2.46.0.adoc │ ├── 2.46.1.adoc │ ├── 2.46.2.adoc │ ├── 2.46.3.adoc │ ├── 2.46.4.adoc │ ├── 2.47.0.adoc │ ├── 2.47.1.adoc │ ├── 2.47.2.adoc │ ├── 2.47.3.adoc │ ├── 2.48.0.adoc │ ├── 2.48.1.adoc │ ├── 2.48.2.adoc │ ├── 2.49.0.adoc │ ├── 2.49.1.adoc │ ├── 2.5.0.adoc │ ├── 2.5.1.adoc │ ├── 2.5.2.adoc │ ├── 2.5.3.adoc │ ├── 2.5.4.adoc │ ├── 2.5.5.adoc │ ├── 2.5.6.adoc │ ├── 2.50.0.adoc │ ├── 2.50.1.adoc │ ├── 2.51.0.adoc │ ├── 2.51.1.adoc │ ├── 2.51.2.adoc │ ├── 2.52.0.adoc │ ├── 2.6.0.adoc │ ├── 2.6.1.adoc │ ├── 2.6.2.adoc │ ├── 2.6.3.adoc │ ├── 2.6.4.adoc │ ├── 2.6.5.adoc │ ├── 2.6.6.adoc │ ├── 2.6.7.adoc │ ├── 2.7.0.adoc │ ├── 2.7.1.adoc │ ├── 2.7.2.adoc │ ├── 2.7.3.adoc │ ├── 2.7.4.adoc │ ├── 2.7.5.adoc │ ├── 2.7.6.adoc │ ├── 2.8.0.adoc │ ├── 2.8.1.adoc │ ├── 2.8.2.adoc │ ├── 2.8.3.adoc │ ├── 2.8.4.adoc │ ├── 2.8.5.adoc │ ├── 2.8.6.adoc │ ├── 2.9.0.adoc │ ├── 2.9.1.adoc │ ├── 2.9.2.adoc │ ├── 2.9.3.adoc │ ├── 2.9.4.adoc │ └── 2.9.5.adoc ├── ReviewingGuidelines.adoc ├── SubmittingPatches ├── ToolsForGit.adoc ├── asciidoc.conf.in ├── asciidoctor-extensions.rb.in ├── blame-options.adoc ├── build-docdep.perl ├── cat-texi.perl ├── cmd-list.sh ├── config.adoc ├── config │ ├── add.adoc │ ├── advice.adoc │ ├── alias.adoc │ ├── am.adoc │ ├── apply.adoc │ ├── attr.adoc │ ├── bitmap-pseudo-merge.adoc │ ├── blame.adoc │ ├── branch.adoc │ ├── browser.adoc │ ├── bundle.adoc │ ├── checkout.adoc │ ├── clean.adoc │ ├── clone.adoc │ ├── color.adoc │ ├── column.adoc │ ├── commit.adoc │ ├── commitgraph.adoc │ ├── completion.adoc │ ├── core.adoc │ ├── credential.adoc │ ├── diff.adoc │ ├── difftool.adoc │ ├── extensions.adoc │ ├── fastimport.adoc │ ├── feature.adoc │ ├── fetch.adoc │ ├── filter.adoc │ ├── fmt-merge-msg.adoc │ ├── format.adoc │ ├── fsck.adoc │ ├── fsmonitor--daemon.adoc │ ├── gc.adoc │ ├── gitcvs.adoc │ ├── gitweb.adoc │ ├── gpg.adoc │ ├── grep.adoc │ ├── gui.adoc │ ├── guitool.adoc │ ├── help.adoc │ ├── http.adoc │ ├── i18n.adoc │ ├── imap.adoc │ ├── includeif.adoc │ ├── index.adoc │ ├── init.adoc │ ├── instaweb.adoc │ ├── interactive.adoc │ ├── log.adoc │ ├── lsrefs.adoc │ ├── mailinfo.adoc │ ├── mailmap.adoc │ ├── maintenance.adoc │ ├── man.adoc │ ├── merge.adoc │ ├── mergetool.adoc │ ├── notes.adoc │ ├── pack.adoc │ ├── pager.adoc │ ├── pretty.adoc │ ├── promisor.adoc │ ├── protocol.adoc │ ├── pull.adoc │ ├── push.adoc │ ├── rebase.adoc │ ├── receive.adoc │ ├── reftable.adoc │ ├── remote.adoc │ ├── remotes.adoc │ ├── repack.adoc │ ├── rerere.adoc │ ├── revert.adoc │ ├── safe.adoc │ ├── sendemail.adoc │ ├── sendpack.adoc │ ├── sequencer.adoc │ ├── showbranch.adoc │ ├── sideband.adoc │ ├── sparse.adoc │ ├── splitindex.adoc │ ├── ssh.adoc │ ├── stash.adoc │ ├── status.adoc │ ├── submodule.adoc │ ├── survey.adoc │ ├── tag.adoc │ ├── tar.adoc │ ├── trace2.adoc │ ├── trailer.adoc │ ├── transfer.adoc │ ├── uploadarchive.adoc │ ├── uploadpack.adoc │ ├── url.adoc │ ├── user.adoc │ ├── versionsort.adoc │ ├── web.adoc │ ├── windows.adoc │ └── worktree.adoc ├── date-formats.adoc ├── diff-context-options.adoc ├── diff-format.adoc ├── diff-generate-patch.adoc ├── diff-options.adoc ├── doc-diff ├── docbook-xsl.css ├── docbook.xsl ├── docinfo-html.in ├── everyday.adoco ├── fetch-options.adoc ├── fix-texi.sh ├── for-each-ref-options.adoc ├── fsck-msgids.adoc ├── generate-mergetool-list.sh ├── git-add.adoc ├── git-am.adoc ├── git-annotate.adoc ├── git-apply.adoc ├── git-archimport.adoc ├── git-archive.adoc ├── git-backfill.adoc ├── git-bisect-lk2009.adoc ├── git-bisect.adoc ├── git-blame.adoc ├── git-branch.adoc ├── git-bugreport.adoc ├── git-bundle.adoc ├── git-cat-file.adoc ├── git-check-attr.adoc ├── git-check-ignore.adoc ├── git-check-mailmap.adoc ├── git-check-ref-format.adoc ├── git-checkout-index.adoc ├── git-checkout.adoc ├── git-cherry-pick.adoc ├── git-cherry.adoc ├── git-citool.adoc ├── git-clean.adoc ├── git-clone.adoc ├── git-column.adoc ├── git-commit-graph.adoc ├── git-commit-tree.adoc ├── git-commit.adoc ├── git-config.adoc ├── git-count-objects.adoc ├── git-credential-cache--daemon.adoc ├── git-credential-cache.adoc ├── git-credential-store.adoc ├── git-credential.adoc ├── git-cvsexportcommit.adoc ├── git-cvsimport.adoc ├── git-cvsserver.adoc ├── git-daemon.adoc ├── git-describe.adoc ├── git-diagnose.adoc ├── git-diff-files.adoc ├── git-diff-index.adoc ├── git-diff-pairs.adoc ├── git-diff-tree.adoc ├── git-diff.adoc ├── git-difftool.adoc ├── git-fast-export.adoc ├── git-fast-import.adoc ├── git-fetch-pack.adoc ├── git-fetch.adoc ├── git-filter-branch.adoc ├── git-fmt-merge-msg.adoc ├── git-for-each-ref.adoc ├── git-for-each-repo.adoc ├── git-format-patch.adoc ├── git-fsck-objects.adoc ├── git-fsck.adoc ├── git-fsmonitor--daemon.adoc ├── git-gc.adoc ├── git-get-tar-commit-id.adoc ├── git-grep.adoc ├── git-gui.adoc ├── git-hash-object.adoc ├── git-help.adoc ├── git-hook.adoc ├── git-http-backend.adoc ├── git-http-fetch.adoc ├── git-http-push.adoc ├── git-imap-send.adoc ├── git-index-pack.adoc ├── git-init-db.adoc ├── git-init.adoc ├── git-instaweb.adoc ├── git-interpret-trailers.adoc ├── git-last-modified.adoc ├── git-log.adoc ├── git-ls-files.adoc ├── git-ls-remote.adoc ├── git-ls-tree.adoc ├── git-mailinfo.adoc ├── git-mailsplit.adoc ├── git-maintenance.adoc ├── git-merge-base.adoc ├── git-merge-file.adoc ├── git-merge-index.adoc ├── git-merge-one-file.adoc ├── git-merge-tree.adoc ├── git-merge.adoc ├── git-mergetool--lib.adoc ├── git-mergetool.adoc ├── git-mktag.adoc ├── git-mktree.adoc ├── git-multi-pack-index.adoc ├── git-mv.adoc ├── git-name-rev.adoc ├── git-notes.adoc ├── git-p4.adoc ├── git-pack-objects.adoc ├── git-pack-redundant.adoc ├── git-pack-refs.adoc ├── git-patch-id.adoc ├── git-prune-packed.adoc ├── git-prune.adoc ├── git-pull.adoc ├── git-push.adoc ├── git-quiltimport.adoc ├── git-range-diff.adoc ├── git-read-tree.adoc ├── git-rebase.adoc ├── git-receive-pack.adoc ├── git-reflog.adoc ├── git-refs.adoc ├── git-remote-ext.adoc ├── git-remote-fd.adoc ├── git-remote-helpers.adoco ├── git-remote.adoc ├── git-repack.adoc ├── git-replace.adoc ├── git-replay.adoc ├── git-repo.adoc ├── git-request-pull.adoc ├── git-rerere.adoc ├── git-reset.adoc ├── git-restore.adoc ├── git-rev-list.adoc ├── git-rev-parse.adoc ├── git-revert.adoc ├── git-rm.adoc ├── git-send-email.adoc ├── git-send-pack.adoc ├── git-sh-i18n--envsubst.adoc ├── git-sh-i18n.adoc ├── git-sh-setup.adoc ├── git-shell.adoc ├── git-shortlog.adoc ├── git-show-branch.adoc ├── git-show-index.adoc ├── git-show-ref.adoc ├── git-show.adoc ├── git-sparse-checkout.adoc ├── git-stage.adoc ├── git-stash.adoc ├── git-status.adoc ├── git-stripspace.adoc ├── git-submodule.adoc ├── git-survey.adoc ├── git-svn.adoc ├── git-switch.adoc ├── git-symbolic-ref.adoc ├── git-tag.adoc ├── git-tools.adoc ├── git-unpack-file.adoc ├── git-unpack-objects.adoc ├── git-update-index.adoc ├── git-update-ref.adoc ├── git-update-server-info.adoc ├── git-upload-archive.adoc ├── git-upload-pack.adoc ├── git-var.adoc ├── git-verify-commit.adoc ├── git-verify-pack.adoc ├── git-verify-tag.adoc ├── git-version.adoc ├── git-web--browse.adoc ├── git-whatchanged.adoc ├── git-worktree.adoc ├── git-write-tree.adoc ├── git.adoc ├── gitattributes.adoc ├── gitcli.adoc ├── gitcore-tutorial.adoc ├── gitcredentials.adoc ├── gitcvs-migration.adoc ├── gitdiffcore.adoc ├── giteveryday.adoc ├── gitfaq.adoc ├── gitformat-bundle.adoc ├── gitformat-chunk.adoc ├── gitformat-commit-graph.adoc ├── gitformat-index.adoc ├── gitformat-loose.adoc ├── gitformat-pack.adoc ├── gitformat-signature.adoc ├── gitglossary.adoc ├── githooks.adoc ├── gitignore.adoc ├── gitk.adoc ├── gitmailmap.adoc ├── gitmodules.adoc ├── gitnamespaces.adoc ├── gitpacking.adoc ├── gitprotocol-capabilities.adoc ├── gitprotocol-common.adoc ├── gitprotocol-http.adoc ├── gitprotocol-pack.adoc ├── gitprotocol-v2.adoc ├── gitremote-helpers.adoc ├── gitrepository-layout.adoc ├── gitrevisions.adoc ├── gitsubmodules.adoc ├── gittutorial-2.adoc ├── gittutorial.adoc ├── gitweb.adoc ├── gitweb.conf.adoc ├── gitworkflows.adoc ├── glossary-content.adoc ├── howto │ ├── coordinate-embargoed-releases.adoc │ ├── howto-index.sh │ ├── keep-canonical-history-correct.adoc │ ├── maintain-git.adoc │ ├── meson.build │ ├── new-command.adoc │ ├── rebase-from-internal-branch.adoc │ ├── rebuild-from-update-hook.adoc │ ├── recover-corrupted-blob-object.adoc │ ├── recover-corrupted-object-harder.adoc │ ├── revert-a-faulty-merge.adoc │ ├── revert-branch-rebase.adoc │ ├── separating-topic-branches.adoc │ ├── setup-git-server-over-http.adoc │ ├── update-hook-example.adoc │ ├── use-git-daemon.adoc │ ├── using-merge-subtree.adoc │ └── using-signed-tag-in-pull-request.adoc ├── i18n.adoc ├── includes │ ├── cmd-config-section-all.adoc │ └── cmd-config-section-rest.adoc ├── install-doc-quick.sh ├── install-webdoc.sh ├── line-range-format.adoc ├── line-range-options.adoc ├── lint-delimited-sections.perl ├── lint-documentation-style.perl ├── lint-fsck-msgids.perl ├── lint-gitlink.perl ├── lint-man-end-blurb.perl ├── lint-man-section-order.perl ├── lint-manpages.sh ├── manpage-bold-literal.xsl ├── manpage-normal.xsl ├── manpage.xsl ├── merge-options.adoc ├── merge-strategies.adoc ├── mergetools │ └── vimdiff.adoc ├── meson.build ├── object-format-disclaimer.adoc ├── pack-refs-options.adoc ├── pretty-formats.adoc ├── pretty-options.adoc ├── pull-fetch-param.adoc ├── ref-reachability-filters.adoc ├── ref-storage-format.adoc ├── rerere-options.adoc ├── rev-list-description.adoc ├── rev-list-options.adoc ├── revisions.adoc ├── scalar.adoc ├── sequencer.adoc ├── signoff-option.adoc ├── technical │ ├── .gitignore │ ├── api-error-handling.adoc │ ├── api-index-skel.adoc │ ├── api-index.sh │ ├── api-merge.adoc │ ├── api-parse-options.adoc │ ├── api-path-walk.adoc │ ├── api-simple-ipc.adoc │ ├── api-trace2.adoc │ ├── bitmap-format.adoc │ ├── build-systems.adoc │ ├── bundle-uri.adoc │ ├── commit-graph.adoc │ ├── directory-rename-detection.adoc │ ├── hash-function-transition.adoc │ ├── large-object-promisors.adoc │ ├── long-running-process-protocol.adoc │ ├── meson.build │ ├── multi-pack-index.adoc │ ├── pack-heuristics.adoc │ ├── packfile-uri.adoc │ ├── parallel-checkout.adoc │ ├── partial-clone.adoc │ ├── platform-support.adoc │ ├── racy-git.adoc │ ├── reftable.adoc │ ├── remembering-renames.adoc │ ├── repository-version.adoc │ ├── rerere.adoc │ ├── scalar.adoc │ ├── send-pack-pipeline.adoc │ ├── shallow.adoc │ ├── sparse-checkout.adoc │ ├── sparse-index.adoc │ ├── trivial-merge.adoc │ └── unit-tests.adoc ├── texi.xsl ├── trace2-target-values.adoc ├── transfer-data-leaks.adoc ├── urls-remotes.adoc ├── urls.adoc └── user-manual.adoc ├── GIT-BUILD-OPTIONS.in ├── GIT-VERSION-FILE.in ├── GIT-VERSION-GEN ├── INSTALL ├── LGPL-2.1 ├── Makefile ├── README.md ├── RelNotes ├── SECURITY.md ├── abspath.c ├── abspath.h ├── aclocal.m4 ├── add-interactive.c ├── add-interactive.h ├── add-patch.c ├── advice.c ├── advice.h ├── alias.c ├── alias.h ├── alloc.c ├── alloc.h ├── apply.c ├── apply.h ├── archive-tar.c ├── archive-zip.c ├── archive.c ├── archive.h ├── attr.c ├── attr.h ├── banned.h ├── base85.c ├── base85.h ├── bin-wrappers ├── .gitignore ├── meson.build └── wrap-for-bin.sh ├── bisect.c ├── bisect.h ├── blame.c ├── blame.h ├── blob.c ├── blob.h ├── block-sha1 ├── sha1.c └── sha1.h ├── bloom.c ├── bloom.h ├── branch.c ├── branch.h ├── builtin.h ├── builtin ├── add.c ├── am.c ├── annotate.c ├── apply.c ├── archive.c ├── backfill.c ├── bisect.c ├── blame.c ├── branch.c ├── bugreport.c ├── bundle.c ├── cat-file.c ├── check-attr.c ├── check-ignore.c ├── check-mailmap.c ├── check-ref-format.c ├── checkout--worker.c ├── checkout-index.c ├── checkout.c ├── clean.c ├── clone.c ├── column.c ├── commit-graph.c ├── commit-tree.c ├── commit.c ├── config.c ├── count-objects.c ├── credential-cache--daemon.c ├── credential-cache.c ├── credential-store.c ├── credential.c ├── describe.c ├── diagnose.c ├── diff-files.c ├── diff-index.c ├── diff-pairs.c ├── diff-tree.c ├── diff.c ├── difftool.c ├── fast-export.c ├── fast-import.c ├── fetch-pack.c ├── fetch.c ├── fmt-merge-msg.c ├── for-each-ref.c ├── for-each-repo.c ├── fsck.c ├── fsmonitor--daemon.c ├── gc.c ├── get-tar-commit-id.c ├── grep.c ├── hash-object.c ├── help.c ├── hook.c ├── index-pack.c ├── init-db.c ├── interpret-trailers.c ├── last-modified.c ├── log.c ├── ls-files.c ├── ls-remote.c ├── ls-tree.c ├── mailinfo.c ├── mailsplit.c ├── merge-base.c ├── merge-file.c ├── merge-index.c ├── merge-ours.c ├── merge-recursive.c ├── merge-tree.c ├── merge.c ├── mktag.c ├── mktree.c ├── multi-pack-index.c ├── mv.c ├── name-rev.c ├── notes.c ├── pack-objects.c ├── pack-redundant.c ├── pack-refs.c ├── patch-id.c ├── prune-packed.c ├── prune.c ├── pull.c ├── push.c ├── range-diff.c ├── read-tree.c ├── rebase.c ├── receive-pack.c ├── reflog.c ├── refs.c ├── remote-ext.c ├── remote-fd.c ├── remote.c ├── repack.c ├── replace.c ├── replay.c ├── repo.c ├── rerere.c ├── reset.c ├── rev-list.c ├── rev-parse.c ├── revert.c ├── rm.c ├── send-pack.c ├── shortlog.c ├── show-branch.c ├── show-index.c ├── show-ref.c ├── sparse-checkout.c ├── stash.c ├── stripspace.c ├── submodule--helper.c ├── survey.c ├── symbolic-ref.c ├── tag.c ├── unpack-file.c ├── unpack-objects.c ├── update-index.c ├── update-ref.c ├── update-server-info.c ├── upload-archive.c ├── upload-pack.c ├── var.c ├── verify-commit.c ├── verify-pack.c ├── verify-tag.c ├── worktree.c └── write-tree.c ├── bundle-uri.c ├── bundle-uri.h ├── bundle.c ├── bundle.h ├── cache-tree.c ├── cache-tree.h ├── cbtree.c ├── cbtree.h ├── chdir-notify.c ├── chdir-notify.h ├── check-builtins.sh ├── checkout.c ├── checkout.h ├── chunk-format.c ├── chunk-format.h ├── ci ├── check-directional-formatting.bash ├── check-unsafe-assertions.sh ├── check-whitespace.sh ├── config │ └── README ├── install-dependencies.sh ├── install-sdk.ps1 ├── lib.sh ├── make-test-artifacts.sh ├── mount-fileshare.sh ├── print-test-failures.sh ├── run-build-and-minimal-fuzzers.sh ├── run-build-and-tests.sh ├── run-rust-checks.sh ├── run-static-analysis.sh ├── run-style-check.sh ├── run-test-slice.sh ├── test-documentation.sh └── util │ └── extract-trash-dirs.sh ├── color.c ├── color.h ├── column.c ├── column.h ├── combine-diff.c ├── command-list.txt ├── commit-graph.c ├── commit-graph.h ├── commit-reach.c ├── commit-reach.h ├── commit-slab-decl.h ├── commit-slab-impl.h ├── commit-slab.h ├── commit.c ├── commit.h ├── common-exit.c ├── common-init.c ├── common-init.h ├── common-main.c ├── compat ├── .gitattributes ├── access.c ├── apple-common-crypto.h ├── basename.c ├── bswap.h ├── compiler.h ├── disk.h ├── fileno.c ├── fopen.c ├── fsmonitor │ ├── fsm-darwin-gcc.h │ ├── fsm-health-darwin.c │ ├── fsm-health-win32.c │ ├── fsm-health.h │ ├── fsm-ipc-darwin.c │ ├── fsm-ipc-win32.c │ ├── fsm-listen-darwin.c │ ├── fsm-listen-win32.c │ ├── fsm-listen.h │ ├── fsm-path-utils-darwin.c │ ├── fsm-path-utils-win32.c │ ├── fsm-settings-darwin.c │ └── fsm-settings-win32.c ├── hstrerror.c ├── inet_ntop.c ├── inet_pton.c ├── lazyload-curl.c ├── linux │ └── procinfo.c ├── memmem.c ├── mimalloc │ ├── LICENSE │ ├── alloc-aligned.c │ ├── alloc.c │ ├── arena-abandon.c │ ├── arena.c │ ├── bitmap.c │ ├── bitmap.h │ ├── free.c │ ├── heap.c │ ├── init.c │ ├── libc.c │ ├── mimalloc-stats.h │ ├── mimalloc.h │ ├── mimalloc │ │ ├── atomic.h │ │ ├── internal.h │ │ ├── prim.h │ │ ├── track.h │ │ └── types.h │ ├── options.c │ ├── os.c │ ├── page-queue.c │ ├── page.c │ ├── prim │ │ ├── osx │ │ │ └── prim.c │ │ ├── prim.c │ │ ├── unix │ │ │ └── prim.c │ │ └── windows │ │ │ └── prim.c │ ├── random.c │ ├── segment-map.c │ ├── segment.c │ └── stats.c ├── mingw-posix.h ├── mingw.c ├── mingw.h ├── mkdir.c ├── mkdtemp.c ├── mmap.c ├── msvc-posix.h ├── msvc.c ├── msvc.h ├── nedmalloc │ ├── License.txt │ ├── Readme.txt │ ├── malloc.c.h │ ├── nedmalloc.c │ └── nedmalloc.h ├── nonblock.c ├── nonblock.h ├── obstack.c ├── obstack.h ├── open.c ├── poll │ ├── poll.c │ └── poll.h ├── posix.h ├── pread.c ├── precompose_utf8.c ├── precompose_utf8.h ├── qsort_s.c ├── regcomp_enhanced.c ├── regex │ ├── regcomp.c │ ├── regex.c │ ├── regex.h │ ├── regex_internal.c │ ├── regex_internal.h │ └── regexec.c ├── setenv.c ├── sha1-chunked.c ├── sha1-chunked.h ├── simple-ipc │ ├── ipc-shared.c │ ├── ipc-unix-socket.c │ └── ipc-win32.c ├── snprintf.c ├── stat.c ├── strcasestr.c ├── strdup.c ├── strlcpy.c ├── strtoimax.c ├── strtoumax.c ├── stub │ └── procinfo.c ├── terminal.c ├── terminal.h ├── unsetenv.c ├── vcbuild │ ├── .gitignore │ ├── README │ ├── find_vs_env.bat │ ├── include │ │ ├── sys │ │ │ ├── param.h │ │ │ ├── time.h │ │ │ └── utime.h │ │ ├── unistd.h │ │ └── utime.h │ ├── scripts │ │ ├── clink.pl │ │ ├── lib.pl │ │ └── rc.pl │ ├── vcpkg_copy_dlls.bat │ └── vcpkg_install.bat ├── win32.h ├── win32 │ ├── alloca.h │ ├── dirent.c │ ├── dirent.h │ ├── exit-process.h │ ├── flush.c │ ├── fscache.c │ ├── fscache.h │ ├── git.manifest │ ├── headless.c │ ├── lazyload.h │ ├── ntifs.h │ ├── path-utils.c │ ├── path-utils.h │ ├── pthread.c │ ├── pthread.h │ ├── syslog.c │ ├── syslog.h │ ├── trace2_win32_process_info.c │ ├── wsl.c │ └── wsl.h ├── win32mmap.c ├── winansi.c └── zlib-compat.h ├── compiler-tricks └── not-constant.c ├── config.c ├── config.h ├── config.mak.dev ├── config.mak.in ├── config.mak.uname ├── configure.ac ├── connect.c ├── connect.h ├── connected.c ├── connected.h ├── contrib ├── README ├── buildsystems │ ├── CMakeLists.txt │ └── git-version.in ├── coccinelle │ ├── .gitignore │ ├── README │ ├── array.cocci │ ├── commit.cocci │ ├── config_fn_ctx.pending.cocci │ ├── equals-null.cocci │ ├── flex_alloc.cocci │ ├── free.cocci │ ├── git_config_number.cocci │ ├── hashmap.cocci │ ├── index-compatibility.cocci │ ├── meson.build │ ├── object_id.cocci │ ├── preincr.cocci │ ├── qsort.cocci │ ├── refs.cocci │ ├── spatchcache │ ├── strbuf.cocci │ ├── swap.cocci │ ├── tests │ │ ├── free.c │ │ └── free.res │ ├── the_repository.cocci │ ├── xcalloc.cocci │ ├── xopen.cocci │ ├── xstrdup_or_null.cocci │ └── xstrncmpz.cocci ├── completion │ ├── .gitattributes │ ├── git-completion.bash │ ├── git-completion.tcsh │ ├── git-completion.zsh │ ├── git-prompt.sh │ └── meson.build ├── contacts │ ├── .gitignore │ ├── Makefile │ ├── git-contacts │ ├── git-contacts.adoc │ └── meson.build ├── coverage-diff.sh ├── credential │ ├── libsecret │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── git-credential-libsecret.c │ │ └── meson.build │ ├── meson.build │ ├── netrc │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── git-credential-netrc.perl │ │ ├── meson.build │ │ ├── t-git-credential-netrc.sh │ │ ├── test.command-option-gpg │ │ ├── test.git-config-gpg │ │ ├── test.netrc │ │ ├── test.netrc.gpg │ │ └── test.pl │ ├── osxkeychain │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── git-credential-osxkeychain.c │ │ └── meson.build │ └── wincred │ │ ├── Makefile │ │ ├── git-credential-wincred.c │ │ └── meson.build ├── diff-highlight │ ├── .gitignore │ ├── DiffHighlight.pm │ ├── Makefile │ ├── README │ ├── diff-highlight.perl │ └── t │ │ ├── .gitignore │ │ ├── Makefile │ │ └── t9400-diff-highlight.sh ├── fast-import │ ├── git-import.perl │ ├── git-import.sh │ ├── git-p4.README │ ├── import-directories.perl │ ├── import-tars.perl │ └── import-zips.py ├── git-jump │ ├── README │ └── git-jump ├── git-shell-commands │ ├── README │ ├── help │ └── list ├── libgit-rs │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── src │ │ ├── config.rs │ │ └── lib.rs │ └── testdata │ │ ├── config1 │ │ ├── config2 │ │ └── config3 ├── libgit-sys │ ├── Cargo.lock │ ├── Cargo.toml │ ├── README.md │ ├── build.rs │ ├── public_symbol_export.c │ ├── public_symbol_export.h │ └── src │ │ └── lib.rs ├── long-running-filter │ └── example.pl ├── meson.build ├── rerere-train.sh ├── stats │ └── packinfo.pl ├── subtree │ ├── .gitignore │ ├── COPYING │ ├── INSTALL │ ├── Makefile │ ├── README │ ├── git-subtree.adoc │ ├── git-subtree.sh │ ├── meson.build │ ├── t │ │ ├── Makefile │ │ └── t7900-subtree.sh │ └── todo ├── update-unicode │ ├── .gitignore │ ├── README │ └── update_unicode.sh └── vscode │ ├── .gitattributes │ ├── README.md │ └── init.sh ├── convert.c ├── convert.h ├── copy.c ├── copy.h ├── credential.c ├── credential.h ├── csum-file.c ├── csum-file.h ├── ctype.c ├── daemon.c ├── date.c ├── date.h ├── decorate.c ├── decorate.h ├── delta-islands.c ├── delta-islands.h ├── delta.h ├── detect-compiler ├── diagnose.c ├── diagnose.h ├── diff-delta.c ├── diff-lib.c ├── diff-merges.c ├── diff-merges.h ├── diff-no-index.c ├── diff.c ├── diff.h ├── diffcore-break.c ├── diffcore-delta.c ├── diffcore-order.c ├── diffcore-pickaxe.c ├── diffcore-rename.c ├── diffcore-rotate.c ├── diffcore.h ├── dir-iterator.c ├── dir-iterator.h ├── dir.c ├── dir.h ├── editor.c ├── editor.h ├── entry.c ├── entry.h ├── environment.c ├── environment.h ├── ewah ├── bitmap.c ├── ewah_bitmap.c ├── ewah_io.c ├── ewah_rlw.c ├── ewok.h └── ewok_rlw.h ├── exec-cmd.c ├── exec-cmd.h ├── fetch-negotiator.c ├── fetch-negotiator.h ├── fetch-pack.c ├── fetch-pack.h ├── fmt-merge-msg.c ├── fmt-merge-msg.h ├── for-each-ref.h ├── fsck.c ├── fsck.h ├── fsmonitor--daemon.h ├── fsmonitor-ipc.c ├── fsmonitor-ipc.h ├── fsmonitor-ll.h ├── fsmonitor-path-utils.h ├── fsmonitor-settings.c ├── fsmonitor-settings.h ├── fsmonitor.c ├── fsmonitor.h ├── generate-cmdlist.sh ├── generate-configlist.sh ├── generate-hooklist.sh ├── generate-perl.sh ├── generate-python.sh ├── generate-script.sh ├── gettext.c ├── gettext.h ├── git-archimport.perl ├── git-compat-util.h ├── git-curl-compat.h ├── git-cvsexportcommit.perl ├── git-cvsimport.perl ├── git-cvsserver.perl ├── git-difftool--helper.sh ├── git-filter-branch.sh ├── git-gui ├── .gitattributes ├── .gitignore ├── GIT-GUI-BUILD-OPTIONS.in ├── GIT-VERSION-GEN ├── Makefile ├── README.md ├── generate-git-gui.sh ├── generate-script.sh ├── generate-tclindex.sh ├── git-gui--askpass.sh ├── git-gui--askyesno ├── git-gui.sh ├── lib │ ├── about.tcl │ ├── blame.tcl │ ├── branch.tcl │ ├── branch_checkout.tcl │ ├── branch_create.tcl │ ├── branch_delete.tcl │ ├── branch_rename.tcl │ ├── browser.tcl │ ├── checkout_op.tcl │ ├── choose_font.tcl │ ├── choose_repository.tcl │ ├── choose_rev.tcl │ ├── chord.tcl │ ├── class.tcl │ ├── commit.tcl │ ├── console.tcl │ ├── database.tcl │ ├── date.tcl │ ├── diff.tcl │ ├── encoding.tcl │ ├── error.tcl │ ├── git-gui.ico │ ├── index.tcl │ ├── line.tcl │ ├── logo.tcl │ ├── merge.tcl │ ├── mergetool.tcl │ ├── meson.build │ ├── option.tcl │ ├── remote.tcl │ ├── remote_add.tcl │ ├── remote_branch_delete.tcl │ ├── search.tcl │ ├── shortcut.tcl │ ├── spellcheck.tcl │ ├── sshkey.tcl │ ├── status_bar.tcl │ ├── themed.tcl │ ├── tools.tcl │ ├── tools_dlg.tcl │ ├── transport.tcl │ ├── win32.tcl │ └── win32_shortcut.js ├── meson.build ├── po │ ├── .gitignore │ ├── README │ ├── bg.po │ ├── de.po │ ├── el.po │ ├── fr.po │ ├── glossary │ │ ├── Makefile │ │ ├── bg.po │ │ ├── de.po │ │ ├── el.po │ │ ├── fr.po │ │ ├── git-gui-glossary.pot │ │ ├── git-gui-glossary.txt │ │ ├── it.po │ │ ├── pt_br.po │ │ ├── pt_pt.po │ │ ├── txt-to-pot.sh │ │ └── zh_cn.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── meson.build │ ├── nb.po │ ├── po2msg.sh │ ├── pt_br.po │ ├── pt_pt.po │ ├── ru.po │ ├── sv.po │ ├── vi.po │ └── zh_cn.po └── windows │ └── git-gui.sh ├── git-instaweb.sh ├── git-merge-octopus.sh ├── git-merge-one-file.sh ├── git-merge-resolve.sh ├── git-mergetool--lib.sh ├── git-mergetool.sh ├── git-p4.py ├── git-quiltimport.sh ├── git-request-pull.sh ├── git-send-email.perl ├── git-sh-i18n.sh ├── git-sh-setup.sh ├── git-submodule.sh ├── git-svn.perl ├── git-web--browse.sh ├── git-zlib.c ├── git-zlib.h ├── git.c ├── git.rc.in ├── gitk-git ├── .gitignore ├── Makefile ├── README.md ├── generate-tcl.sh ├── gitk ├── meson.build └── po │ ├── .gitignore │ ├── bg.po │ ├── ca.po │ ├── de.po │ ├── es.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── ja.po │ ├── meson.build │ ├── po2msg.sh │ ├── pt_br.po │ ├── pt_pt.po │ ├── ru.po │ ├── sv.po │ ├── ta.po │ ├── vi.po │ └── zh_cn.po ├── gitweb ├── GITWEB-BUILD-OPTIONS.in ├── INSTALL ├── Makefile ├── README ├── generate-gitweb-cgi.sh ├── generate-gitweb-js.sh ├── gitweb.perl ├── meson.build └── static │ ├── git-favicon.png │ ├── git-logo.png │ ├── gitweb.css │ └── js │ ├── README │ ├── adjust-timezone.js │ ├── blame_incremental.js │ ├── javascript-detection.js │ └── lib │ ├── common-lib.js │ ├── cookies.js │ └── datetime.js ├── gpg-interface.c ├── gpg-interface.h ├── graph.c ├── graph.h ├── grep.c ├── grep.h ├── hash-lookup.c ├── hash-lookup.h ├── hash.c ├── hash.h ├── hashmap.c ├── hashmap.h ├── help.c ├── help.h ├── hex-ll.c ├── hex-ll.h ├── hex.c ├── hex.h ├── hook.c ├── hook.h ├── http-backend.c ├── http-fetch.c ├── http-push.c ├── http-walker.c ├── http.c ├── http.h ├── ident.c ├── ident.h ├── imap-send.c ├── iterator.h ├── json-writer.c ├── json-writer.h ├── khash.h ├── kwset.c ├── kwset.h ├── levenshtein.c ├── levenshtein.h ├── line-log.c ├── line-log.h ├── line-range.c ├── line-range.h ├── linear-assignment.c ├── linear-assignment.h ├── list-objects-filter-options.c ├── list-objects-filter-options.h ├── list-objects-filter.c ├── list-objects-filter.h ├── list-objects.c ├── list-objects.h ├── list.h ├── lockfile.c ├── lockfile.h ├── log-tree.c ├── log-tree.h ├── loose.c ├── loose.h ├── ls-refs.c ├── ls-refs.h ├── mailinfo.c ├── mailinfo.h ├── mailmap.c ├── mailmap.h ├── match-trees.c ├── match-trees.h ├── mem-pool.c ├── mem-pool.h ├── merge-blobs.c ├── merge-blobs.h ├── merge-ll.c ├── merge-ll.h ├── merge-ort-wrappers.c ├── merge-ort-wrappers.h ├── merge-ort.c ├── merge-ort.h ├── merge.c ├── merge.h ├── mergesort.h ├── mergetools ├── araxis ├── bc ├── codecompare ├── deltawalker ├── diffmerge ├── diffuse ├── ecmerge ├── emerge ├── examdiff ├── guiffy ├── gvimdiff ├── kdiff3 ├── kompare ├── meld ├── nvimdiff ├── opendiff ├── p4merge ├── smerge ├── tkdiff ├── tortoisemerge ├── vimdiff ├── vscode ├── winmerge └── xxdiff ├── meson.build ├── meson_options.txt ├── midx-write.c ├── midx.c ├── midx.h ├── name-hash.c ├── name-hash.h ├── negotiator ├── default.c ├── default.h ├── noop.c ├── noop.h ├── skipping.c └── skipping.h ├── notes-cache.c ├── notes-cache.h ├── notes-merge.c ├── notes-merge.h ├── notes-utils.c ├── notes-utils.h ├── notes.c ├── notes.h ├── object-file-convert.c ├── object-file-convert.h ├── object-file.c ├── object-file.h ├── object-name.c ├── object-name.h ├── object.c ├── object.h ├── odb.c ├── odb.h ├── oid-array.c ├── oid-array.h ├── oidmap.c ├── oidmap.h ├── oidset.c ├── oidset.h ├── oidtree.c ├── oidtree.h ├── oss-fuzz ├── .gitignore ├── dummy-cmd-main.c ├── fuzz-commit-graph.c ├── fuzz-config.c ├── fuzz-credential-from-url-gently.c ├── fuzz-date.c ├── fuzz-pack-headers.c ├── fuzz-pack-idx.c ├── fuzz-parse-attr-line.c ├── fuzz-url-decode-mem.c └── meson.build ├── pack-bitmap-write.c ├── pack-bitmap.c ├── pack-bitmap.h ├── pack-check.c ├── pack-mtimes.c ├── pack-mtimes.h ├── pack-objects.c ├── pack-objects.h ├── pack-refs.c ├── pack-refs.h ├── pack-revindex.c ├── pack-revindex.h ├── pack-write.c ├── pack.h ├── packfile.c ├── packfile.h ├── pager.c ├── pager.h ├── parallel-checkout.c ├── parallel-checkout.h ├── parse-options-cb.c ├── parse-options.c ├── parse-options.h ├── parse.c ├── parse.h ├── patch-delta.c ├── patch-ids.c ├── patch-ids.h ├── path-walk.c ├── path-walk.h ├── path.c ├── path.h ├── pathspec.c ├── pathspec.h ├── perl ├── .gitignore ├── FromCPAN │ ├── .gitattributes │ ├── Error.pm │ ├── Mail │ │ ├── Address.pm │ │ └── meson.build │ └── meson.build ├── Git.pm ├── Git │ ├── I18N.pm │ ├── IndexInfo.pm │ ├── LoadCPAN.pm │ ├── LoadCPAN │ │ ├── Error.pm │ │ ├── Mail │ │ │ ├── Address.pm │ │ │ └── meson.build │ │ └── meson.build │ ├── Packet.pm │ ├── SVN.pm │ ├── SVN │ │ ├── Editor.pm │ │ ├── Fetcher.pm │ │ ├── GlobSpec.pm │ │ ├── Log.pm │ │ ├── Memoize │ │ │ ├── YAML.pm │ │ │ └── meson.build │ │ ├── Migration.pm │ │ ├── Prompt.pm │ │ ├── Ra.pm │ │ ├── Utils.pm │ │ └── meson.build │ └── meson.build ├── header_templates │ ├── fixed_prefix.template.pl │ └── runtime_prefix.template.pl └── meson.build ├── pkt-line.c ├── pkt-line.h ├── po ├── .gitignore ├── README.md ├── TEAMS ├── bg.po ├── ca.po ├── de.po ├── el.po ├── es.po ├── fr.po ├── ga.po ├── id.po ├── is.po ├── it.po ├── ko.po ├── meson.build ├── pl.po ├── pt_PT.po ├── ru.po ├── sv.po ├── tr.po ├── uk.po ├── vi.po ├── zh_CN.po └── zh_TW.po ├── preload-index.c ├── preload-index.h ├── pretty.c ├── pretty.h ├── prio-queue.c ├── prio-queue.h ├── progress.c ├── progress.h ├── promisor-remote.c ├── promisor-remote.h ├── prompt.c ├── prompt.h ├── protocol-caps.c ├── protocol-caps.h ├── protocol.c ├── protocol.h ├── prune-packed.c ├── prune-packed.h ├── pseudo-merge.c ├── pseudo-merge.h ├── quote.c ├── quote.h ├── range-diff.c ├── range-diff.h ├── reachable.c ├── reachable.h ├── read-cache-ll.h ├── read-cache.c ├── read-cache.h ├── rebase-interactive.c ├── rebase-interactive.h ├── rebase.c ├── rebase.h ├── ref-filter.c ├── ref-filter.h ├── reflog-walk.c ├── reflog-walk.h ├── reflog.c ├── reflog.h ├── refs.c ├── refs.h ├── refs ├── debug.c ├── files-backend.c ├── iterator.c ├── packed-backend.c ├── packed-backend.h ├── ref-cache.c ├── ref-cache.h ├── refs-internal.h └── reftable-backend.c ├── refspec.c ├── refspec.h ├── reftable ├── LICENSE ├── basics.c ├── basics.h ├── block.c ├── block.h ├── blocksource.c ├── blocksource.h ├── constants.h ├── error.c ├── fsck.c ├── iter.c ├── iter.h ├── merged.c ├── merged.h ├── pq.c ├── pq.h ├── record.c ├── record.h ├── reftable-basics.h ├── reftable-block.h ├── reftable-blocksource.h ├── reftable-constants.h ├── reftable-error.h ├── reftable-fsck.h ├── reftable-iterator.h ├── reftable-merged.h ├── reftable-record.h ├── reftable-stack.h ├── reftable-table.h ├── reftable-writer.h ├── stack.c ├── stack.h ├── system.c ├── system.h ├── table.c ├── table.h ├── tree.c ├── tree.h ├── writer.c └── writer.h ├── remote-curl.c ├── remote.c ├── remote.h ├── repack-cruft.c ├── repack-filtered.c ├── repack-geometry.c ├── repack-midx.c ├── repack-promisor.c ├── repack.c ├── repack.h ├── replace-object.c ├── replace-object.h ├── repo-settings.c ├── repo-settings.h ├── repository.c ├── repository.h ├── rerere.c ├── rerere.h ├── reset.c ├── reset.h ├── resolve-undo.c ├── resolve-undo.h ├── revision.c ├── revision.h ├── run-command.c ├── run-command.h ├── sane-ctype.h ├── scalar.c ├── send-pack.c ├── send-pack.h ├── sequencer.c ├── sequencer.h ├── serve.c ├── serve.h ├── server-info.c ├── server-info.h ├── setup.c ├── setup.h ├── sh-i18n--envsubst.c ├── sha1 └── openssl.h ├── sha1dc ├── .gitattributes ├── LICENSE.txt ├── sha1.c ├── sha1.h ├── ubc_check.c └── ubc_check.h ├── sha1dc_git.c ├── sha1dc_git.h ├── sha256 ├── block │ ├── sha256.c │ └── sha256.h ├── gcrypt.h ├── nettle.h └── openssl.h ├── shallow.c ├── shallow.h ├── shared.mak ├── shell.c ├── shortlog.h ├── sideband.c ├── sideband.h ├── sigchain.c ├── sigchain.h ├── simple-ipc.h ├── sparse-index.c ├── sparse-index.h ├── split-index.c ├── split-index.h ├── src ├── cargo-meson.sh ├── lib.rs ├── meson.build └── varint.rs ├── stable-qsort.c ├── statinfo.c ├── statinfo.h ├── strbuf.c ├── strbuf.h ├── streaming.c ├── streaming.h ├── string-list.c ├── string-list.h ├── strmap.c ├── strmap.h ├── strvec.c ├── strvec.h ├── sub-process.c ├── sub-process.h ├── submodule-config.c ├── submodule-config.h ├── submodule.c ├── submodule.h ├── subprojects ├── .gitignore ├── curl.wrap ├── expat.wrap ├── openssl.wrap ├── pcre2.wrap └── zlib.wrap ├── symlinks.c ├── symlinks.h ├── t ├── .gitattributes ├── .gitignore ├── Git-SVN │ ├── 00compile.t │ └── Utils │ │ ├── add_path_to_url.t │ │ ├── can_compress.t │ │ ├── canonicalize_url.t │ │ ├── collapse_dotdot.t │ │ ├── fatal.t │ │ └── join_paths.t ├── Makefile ├── README ├── aggregate-results.sh ├── annotate-tests.sh ├── chainlint-cat.pl ├── chainlint.pl ├── chainlint │ ├── arithmetic-expansion.expect │ ├── arithmetic-expansion.test │ ├── bash-array.expect │ ├── bash-array.test │ ├── blank-line-before-esac.expect │ ├── blank-line-before-esac.test │ ├── blank-line.expect │ ├── blank-line.test │ ├── block-comment.expect │ ├── block-comment.test │ ├── block.expect │ ├── block.test │ ├── broken-chain.expect │ ├── broken-chain.test │ ├── case-comment.expect │ ├── case-comment.test │ ├── case.expect │ ├── case.test │ ├── chain-break-background.expect │ ├── chain-break-background.test │ ├── chain-break-continue.expect │ ├── chain-break-continue.test │ ├── chain-break-false.expect │ ├── chain-break-false.test │ ├── chain-break-return-exit.expect │ ├── chain-break-return-exit.test │ ├── chain-break-status.expect │ ├── chain-break-status.test │ ├── chained-block.expect │ ├── chained-block.test │ ├── chained-subshell.expect │ ├── chained-subshell.test │ ├── close-nested-and-parent-together.expect │ ├── close-nested-and-parent-together.test │ ├── close-subshell.expect │ ├── close-subshell.test │ ├── command-substitution-subsubshell.expect │ ├── command-substitution-subsubshell.test │ ├── command-substitution.expect │ ├── command-substitution.test │ ├── comment.expect │ ├── comment.test │ ├── complex-if-in-cuddled-loop.expect │ ├── complex-if-in-cuddled-loop.test │ ├── cuddled-if-then-else.expect │ ├── cuddled-if-then-else.test │ ├── cuddled-loop.expect │ ├── cuddled-loop.test │ ├── cuddled.expect │ ├── cuddled.test │ ├── double-here-doc.expect │ ├── double-here-doc.test │ ├── dqstring-line-splice.expect │ ├── dqstring-line-splice.test │ ├── dqstring-no-interpolate.expect │ ├── dqstring-no-interpolate.test │ ├── empty-here-doc.expect │ ├── empty-here-doc.test │ ├── exclamation.expect │ ├── exclamation.test │ ├── exit-loop.expect │ ├── exit-loop.test │ ├── exit-subshell.expect │ ├── exit-subshell.test │ ├── for-loop-abbreviated.expect │ ├── for-loop-abbreviated.test │ ├── for-loop.expect │ ├── for-loop.test │ ├── function.expect │ ├── function.test │ ├── here-doc-body-indent.expect │ ├── here-doc-body-indent.test │ ├── here-doc-body-pathological.expect │ ├── here-doc-body-pathological.test │ ├── here-doc-body.expect │ ├── here-doc-body.test │ ├── here-doc-close-subshell.expect │ ├── here-doc-close-subshell.test │ ├── here-doc-double.expect │ ├── here-doc-double.test │ ├── here-doc-indent-operator.expect │ ├── here-doc-indent-operator.test │ ├── here-doc-multi-line-command-subst.expect │ ├── here-doc-multi-line-command-subst.test │ ├── here-doc-multi-line-string.expect │ ├── here-doc-multi-line-string.test │ ├── here-doc.expect │ ├── here-doc.test │ ├── if-condition-split.expect │ ├── if-condition-split.test │ ├── if-in-loop.expect │ ├── if-in-loop.test │ ├── if-then-else.expect │ ├── if-then-else.test │ ├── incomplete-line.expect │ ├── incomplete-line.test │ ├── inline-comment.expect │ ├── inline-comment.test │ ├── loop-detect-failure.expect │ ├── loop-detect-failure.test │ ├── loop-detect-status.expect │ ├── loop-detect-status.test │ ├── loop-in-if.expect │ ├── loop-in-if.test │ ├── loop-upstream-pipe.expect │ ├── loop-upstream-pipe.test │ ├── multi-line-nested-command-substitution.expect │ ├── multi-line-nested-command-substitution.test │ ├── multi-line-string.expect │ ├── multi-line-string.test │ ├── negated-one-liner.expect │ ├── negated-one-liner.test │ ├── nested-cuddled-subshell.expect │ ├── nested-cuddled-subshell.test │ ├── nested-here-doc.expect │ ├── nested-here-doc.test │ ├── nested-loop-detect-failure.expect │ ├── nested-loop-detect-failure.test │ ├── nested-subshell-comment.expect │ ├── nested-subshell-comment.test │ ├── nested-subshell.expect │ ├── nested-subshell.test │ ├── not-heredoc.expect │ ├── not-heredoc.test │ ├── one-liner-for-loop.expect │ ├── one-liner-for-loop.test │ ├── one-liner.expect │ ├── one-liner.test │ ├── p4-filespec.expect │ ├── p4-filespec.test │ ├── pipe.expect │ ├── pipe.test │ ├── return-loop.expect │ ├── return-loop.test │ ├── semicolon.expect │ ├── semicolon.test │ ├── sqstring-in-sqstring.expect │ ├── sqstring-in-sqstring.test │ ├── subshell-here-doc.expect │ ├── subshell-here-doc.test │ ├── subshell-one-liner.expect │ ├── subshell-one-liner.test │ ├── t7900-subtree.expect │ ├── t7900-subtree.test │ ├── token-pasting.expect │ ├── token-pasting.test │ ├── unclosed-here-doc-indent.expect │ ├── unclosed-here-doc-indent.test │ ├── unclosed-here-doc.expect │ ├── unclosed-here-doc.test │ ├── while-loop.expect │ └── while-loop.test ├── check-non-portable-shell.pl ├── for-each-ref-tests.sh ├── helper │ ├── .gitignore │ ├── meson.build │ ├── test-advise.c │ ├── test-bitmap.c │ ├── test-bloom.c │ ├── test-bundle-uri.c │ ├── test-cache-tree.c │ ├── test-chmtime.c │ ├── test-config.c │ ├── test-crontab.c │ ├── test-csprng.c │ ├── test-date.c │ ├── test-delete-gpgsig.c │ ├── test-delta.c │ ├── test-dir-iterator.c │ ├── test-drop-caches.c │ ├── test-dump-cache-tree.c │ ├── test-dump-fsmonitor.c │ ├── test-dump-split-index.c │ ├── test-dump-untracked-cache.c │ ├── test-env-helper.c │ ├── test-example-tap.c │ ├── test-fake-ssh.c │ ├── test-find-pack.c │ ├── test-fsmonitor-client.c │ ├── test-genrandom.c │ ├── test-genzeros.c │ ├── test-getcwd.c │ ├── test-hash-speed.c │ ├── test-hash.c │ ├── test-hashmap.c │ ├── test-hexdump.c │ ├── test-iconv.c │ ├── test-json-writer.c │ ├── test-lazy-init-name-hash.c │ ├── test-match-trees.c │ ├── test-mergesort.c │ ├── test-mktemp.c │ ├── test-name-hash.c │ ├── test-online-cpus.c │ ├── test-pack-deltas.c │ ├── test-pack-mtimes.c │ ├── test-parse-options.c │ ├── test-parse-pathspec-file.c │ ├── test-partial-clone.c │ ├── test-path-utils.c │ ├── test-path-walk.c │ ├── test-pcre2-config.c │ ├── test-pkt-line.c │ ├── test-proc-receive.c │ ├── test-progress.c │ ├── test-reach.c │ ├── test-read-cache.c │ ├── test-read-graph.c │ ├── test-read-midx.c │ ├── test-ref-store.c │ ├── test-reftable.c │ ├── test-regex.c │ ├── test-repository.c │ ├── test-revision-walking.c │ ├── test-rot13-filter.c │ ├── test-run-command.c │ ├── test-scrap-cache-tree.c │ ├── test-serve-v2.c │ ├── test-sha1.c │ ├── test-sha1.sh │ ├── test-sha256.c │ ├── test-sigchain.c │ ├── test-simple-ipc.c │ ├── test-string-list.c │ ├── test-submodule-config.c │ ├── test-submodule-nested-repo-config.c │ ├── test-submodule.c │ ├── test-subprocess.c │ ├── test-tool-utils.h │ ├── test-tool.c │ ├── test-tool.h │ ├── test-trace2.c │ ├── test-truncate.c │ ├── test-userdiff.c │ ├── test-wildmatch.c │ ├── test-windows-named-pipe.c │ ├── test-write-cache.c │ ├── test-xml-encode.c │ └── test-zlib.c ├── interop │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── i0000-basic.sh │ ├── i5500-git-daemon.sh │ ├── i5700-protocol-transition.sh │ └── interop-lib.sh ├── lib-bash.sh ├── lib-bitmap.sh ├── lib-bundle-uri-protocol.sh ├── lib-bundle.sh ├── lib-chunk.sh ├── lib-chunk │ └── corrupt-chunk-file.pl ├── lib-commit-graph.sh ├── lib-credential.sh ├── lib-cvs.sh ├── lib-diff-alternative.sh ├── lib-diff-data.sh ├── lib-diff.sh ├── lib-diff │ ├── test-binary-1.png │ └── test-binary-2.png ├── lib-encoding.sh ├── lib-gettext.sh ├── lib-git-daemon.sh ├── lib-git-p4.sh ├── lib-git-svn.sh ├── lib-gitweb.sh ├── lib-gpg.sh ├── lib-gpg │ ├── gpgsm-gen-key.in │ ├── gpgsm_cert.p12 │ ├── keyring.gpg │ └── ownertrust ├── lib-httpd.sh ├── lib-httpd │ ├── apache.conf │ ├── apply-one-time-script.sh │ ├── broken-smart-http.sh │ ├── error-no-report.sh │ ├── error-smart-http.sh │ ├── error.sh │ ├── incomplete-body-upload-pack-v2-http.sh │ ├── incomplete-length-upload-pack-v2-http.sh │ ├── nph-custom-auth.sh │ ├── passwd │ ├── proxy-passwd │ └── ssl.cnf ├── lib-log-graph.sh ├── lib-loose.sh ├── lib-midx.sh ├── lib-pack.sh ├── lib-pager.sh ├── lib-parallel-checkout.sh ├── lib-patch-mode.sh ├── lib-perl.sh ├── lib-proto-disable.sh ├── lib-read-tree-m-3way.sh ├── lib-read-tree.sh ├── lib-rebase.sh ├── lib-submodule-update.sh ├── lib-subtest.sh ├── lib-sudo.sh ├── lib-t3100.sh ├── lib-t6000.sh ├── lib-terminal.sh ├── lib-unicode-nfc-nfd.sh ├── lib-unique-files.sh ├── meson.build ├── oid-info │ ├── README │ ├── hash-info │ └── oid ├── pack-refs-tests.sh ├── perf │ ├── .gitignore │ ├── Makefile │ ├── README │ ├── aggregate.perl │ ├── bisect_regression │ ├── bisect_run_script │ ├── config │ ├── lib-bitmap.sh │ ├── lib-pack.sh │ ├── min_time.perl │ ├── p0000-perf-lib-sanity.sh │ ├── p0001-rev-list.sh │ ├── p0002-read-cache.sh │ ├── p0003-delta-base-cache.sh │ ├── p0004-lazy-init-name-hash.sh │ ├── p0005-status.sh │ ├── p0006-read-tree-checkout.sh │ ├── p0007-write-cache.sh │ ├── p0008-odb-fsync.sh │ ├── p0071-sort.sh │ ├── p0090-cache-tree.sh │ ├── p0100-globbing.sh │ ├── p1006-cat-file.sh │ ├── p1400-update-ref.sh │ ├── p1450-fsck.sh │ ├── p1451-fsck-skip-list.sh │ ├── p1500-graph-walks.sh │ ├── p1501-rev-parse-oneline.sh │ ├── p2000-sparse-operations.sh │ ├── p3400-rebase.sh │ ├── p3404-rebase-interactive.sh │ ├── p4000-diff-algorithms.sh │ ├── p4001-diff-no-index.sh │ ├── p4002-diff-color-moved.sh │ ├── p4205-log-pretty-formats.sh │ ├── p4209-pickaxe.sh │ ├── p4211-line-log.sh │ ├── p4220-log-grep-engines.sh │ ├── p4221-log-grep-engines-fixed.sh │ ├── p5302-pack-index.sh │ ├── p5303-many-packs.sh │ ├── p5304-prune.sh │ ├── p5310-pack-bitmaps.sh │ ├── p5311-pack-bitmaps-fetch.sh │ ├── p5312-pack-bitmaps-revs.sh │ ├── p5313-pack-objects.sh │ ├── p5314-name-hash.sh │ ├── p5326-multi-pack-bitmaps.sh │ ├── p5332-multi-pack-reuse.sh │ ├── p5333-pseudo-merge-bitmaps.sh │ ├── p5550-fetch-tags.sh │ ├── p5551-fetch-rescan.sh │ ├── p5600-partial-clone.sh │ ├── p5601-clone-reference.sh │ ├── p6010-merge-base.sh │ ├── p6100-describe.sh │ ├── p6300-for-each-ref.sh │ ├── p7000-filter-branch.sh │ ├── p7102-reset.sh │ ├── p7300-clean.sh │ ├── p7519-fsmonitor.sh │ ├── p7527-builtin-fsmonitor.sh │ ├── p7810-grep.sh │ ├── p7820-grep-engines.sh │ ├── p7821-grep-engines-fixed.sh │ ├── p7822-grep-perl-character.sh │ ├── p8020-last-modified.sh │ ├── p9210-scalar.sh │ ├── p9300-fast-import-export.sh │ ├── perf-lib.sh │ ├── repos │ │ ├── .gitignore │ │ ├── inflate-repo.sh │ │ └── many-files.sh │ └── run ├── run-test.sh ├── show-ref-exists-tests.sh ├── socks4-proxy.pl ├── t0000-basic.sh ├── t0001-init.sh ├── t0002-gitfile.sh ├── t0003-attributes.sh ├── t0004-unwritable.sh ├── t0005-signals.sh ├── t0006-date.sh ├── t0007-git-var.sh ├── t0008-ignores.sh ├── t0010-racy-git.sh ├── t0012-help.sh ├── t0013-sha1dc.sh ├── t0013 │ └── shattered-1.pdf ├── t0014-alias.sh ├── t0017-env-helper.sh ├── t0018-advice.sh ├── t0019-json-writer.sh ├── t0019 │ └── parse_json.perl ├── t0020-crlf.sh ├── t0021-conversion.sh ├── t0022-crlf-rename.sh ├── t0023-crlf-am.sh ├── t0024-crlf-archive.sh ├── t0025-crlf-renormalize.sh ├── t0026-eol-config.sh ├── t0027-auto-crlf.sh ├── t0028-working-tree-encoding.sh ├── t0029-core-unsetenvvars.sh ├── t0030-stripspace.sh ├── t0033-safe-directory.sh ├── t0034-root-safe-directory.sh ├── t0035-safe-bare-repository.sh ├── t0040-parse-options.sh ├── t0041-usage.sh ├── t0050-filesystem.sh ├── t0051-windows-named-pipe.sh ├── t0052-simple-ipc.sh ├── t0055-beyond-symlinks.sh ├── t0056-git-C.sh ├── t0060-path-utils.sh ├── t0061-run-command.sh ├── t0062-revision-walking.sh ├── t0066-dir-iterator.sh ├── t0067-parse_pathspec_file.sh ├── t0068-for-each-repo.sh ├── t0070-fundamental.sh ├── t0071-sort.sh ├── t0080-unit-test-output.sh ├── t0081-find-pack.sh ├── t0090-cache-tree.sh ├── t0091-bugreport.sh ├── t0092-diagnose.sh ├── t0095-bloom.sh ├── t0100-previous.sh ├── t0101-at-syntax.sh ├── t0200-gettext-basic.sh ├── t0200 │ ├── test.c │ ├── test.perl │ └── test.sh ├── t0201-gettext-fallbacks.sh ├── t0202-gettext-perl.sh ├── t0202 │ └── test.pl ├── t0203-gettext-setlocale-sanity.sh ├── t0204-gettext-reencode-sanity.sh ├── t0210-trace2-normal.sh ├── t0211-trace2-perf.sh ├── t0211 │ └── scrub_perf.perl ├── t0212-trace2-event.sh ├── t0212 │ └── parse_events.perl ├── t0300-credentials.sh ├── t0301-credential-cache.sh ├── t0302-credential-store.sh ├── t0303-credential-external.sh ├── t0410-partial-clone.sh ├── t0411-clone-from-partial.sh ├── t0450-txt-doc-vs-help.sh ├── t0450 │ ├── adoc-help-mismatches │ └── adoc-missing ├── t0500-progress-display.sh ├── t0600-reffiles-backend.sh ├── t0601-reffiles-pack-refs.sh ├── t0602-reffiles-fsck.sh ├── t0610-reftable-basics.sh ├── t0611-reftable-httpd.sh ├── t0612-reftable-jgit-compatibility.sh ├── t0613-reftable-write-options.sh ├── t0614-reftable-fsck.sh ├── t1000-read-tree-m-3way.sh ├── t1001-read-tree-m-2way.sh ├── t1002-read-tree-m-u-2way.sh ├── t1003-read-tree-prefix.sh ├── t1004-read-tree-m-u-wf.sh ├── t1005-read-tree-reset.sh ├── t1006-cat-file.sh ├── t1007-hash-object.sh ├── t1008-read-tree-overlay.sh ├── t1009-read-tree-new-index.sh ├── t1010-mktree.sh ├── t1011-read-tree-sparse-checkout.sh ├── t1012-read-tree-df.sh ├── t1013-read-tree-submodule.sh ├── t1014-read-tree-confusing.sh ├── t1015-read-index-unmerged.sh ├── t1016-compatObjectFormat.sh ├── t1016 │ └── gpg ├── t1020-subdirectory.sh ├── t1022-read-tree-partial-clone.sh ├── t1050-large.sh ├── t1051-large-conversion.sh ├── t1060-object-corruption.sh ├── t1090-sparse-checkout-scope.sh ├── t1091-sparse-checkout-builtin.sh ├── t1092-sparse-checkout-compatibility.sh ├── t1100-commit-tree-options.sh ├── t1300-config.sh ├── t1301-shared-repo.sh ├── t1302-repo-version.sh ├── t1303-wacky-config.sh ├── t1304-default-acl.sh ├── t1305-config-include.sh ├── t1306-xdg-files.sh ├── t1307-config-blob.sh ├── t1308-config-set.sh ├── t1309-early-config.sh ├── t1310-config-default.sh ├── t1350-config-hooks-path.sh ├── t1400-update-ref.sh ├── t1401-symbolic-ref.sh ├── t1402-check-ref-format.sh ├── t1403-show-ref.sh ├── t1404-update-ref-errors.sh ├── t1405-main-ref-store.sh ├── t1406-submodule-ref-store.sh ├── t1407-worktree-ref-store.sh ├── t1408-packed-refs.sh ├── t1409-avoid-packing-refs.sh ├── t1410-reflog.sh ├── t1411-reflog-show.sh ├── t1412-reflog-loop.sh ├── t1413-reflog-detach.sh ├── t1414-reflog-walk.sh ├── t1415-worktree-refs.sh ├── t1416-ref-transaction-hooks.sh ├── t1417-reflog-updateref.sh ├── t1418-reflog-exists.sh ├── t1419-exclude-refs.sh ├── t1420-lost-found.sh ├── t1421-reflog-write.sh ├── t1422-show-ref-exists.sh ├── t1430-bad-ref-name.sh ├── t1450-fsck.sh ├── t1451-fsck-buffer.sh ├── t1460-refs-migrate.sh ├── t1461-refs-list.sh ├── t1462-refs-exists.sh ├── t1463-refs-optimize.sh ├── t1500-rev-parse.sh ├── t1501-work-tree.sh ├── t1502-rev-parse-parseopt.sh ├── t1502 │ ├── .gitattributes │ ├── optionspec-neg │ ├── optionspec-neg.help │ └── optionspec.help ├── t1503-rev-parse-verify.sh ├── t1504-ceiling-dirs.sh ├── t1505-rev-parse-last.sh ├── t1506-rev-parse-diagnosis.sh ├── t1507-rev-parse-upstream.sh ├── t1508-at-combinations.sh ├── t1509-root-work-tree.sh ├── t1509 │ ├── excludes │ └── prepare-chroot.sh ├── t1510-repo-setup.sh ├── t1511-rev-parse-caret.sh ├── t1512-rev-parse-disambiguation.sh ├── t1513-rev-parse-prefix.sh ├── t1514-rev-parse-push.sh ├── t1515-rev-parse-outside-repo.sh ├── t1517-outside-repo.sh ├── t1600-index.sh ├── t1601-index-bogus.sh ├── t1700-split-index.sh ├── t1701-racy-split-index.sh ├── t1800-hook.sh ├── t1900-repo.sh ├── t1901-repo-structure.sh ├── t2000-conflict-when-checking-files-out.sh ├── t2002-checkout-cache-u.sh ├── t2003-checkout-cache-mkdir.sh ├── t2004-checkout-cache-temp.sh ├── t2005-checkout-index-symlinks.sh ├── t2006-checkout-index-basic.sh ├── t2007-checkout-symlink.sh ├── t2008-checkout-subdir.sh ├── t2009-checkout-statinfo.sh ├── t2010-checkout-ambiguous.sh ├── t2011-checkout-invalid-head.sh ├── t2012-checkout-last.sh ├── t2013-checkout-submodule.sh ├── t2014-checkout-switch.sh ├── t2015-checkout-unborn.sh ├── t2016-checkout-patch.sh ├── t2017-checkout-orphan.sh ├── t2018-checkout-branch.sh ├── t2019-checkout-ambiguous-ref.sh ├── t2020-checkout-detach.sh ├── t2021-checkout-overwrite.sh ├── t2022-checkout-paths.sh ├── t2023-checkout-m.sh ├── t2024-checkout-dwim.sh ├── t2025-checkout-no-overlay.sh ├── t2026-checkout-pathspec-file.sh ├── t2027-checkout-track.sh ├── t2030-unresolve-info.sh ├── t2031-checkout-long-paths.sh ├── t2040-checkout-symlink-attr.sh ├── t2050-git-dir-relative.sh ├── t2060-switch.sh ├── t2070-restore.sh ├── t2071-restore-patch.sh ├── t2072-restore-pathspec-file.sh ├── t2080-parallel-checkout-basics.sh ├── t2081-parallel-checkout-collisions.sh ├── t2082-parallel-checkout-attributes.sh ├── t2100-update-cache-badpath.sh ├── t2101-update-index-reupdate.sh ├── t2102-update-index-symlinks.sh ├── t2103-update-index-ignore-missing.sh ├── t2104-update-index-skip-worktree.sh ├── t2105-update-index-gitfile.sh ├── t2106-update-index-assume-unchanged.sh ├── t2107-update-index-basic.sh ├── t2108-update-index-refresh-racy.sh ├── t2200-add-update.sh ├── t2201-add-update-typechange.sh ├── t2202-add-addremove.sh ├── t2203-add-intent.sh ├── t2204-add-ignored.sh ├── t2205-add-worktree-config.sh ├── t2300-cd-to-toplevel.sh ├── t2400-worktree-add.sh ├── t2401-worktree-prune.sh ├── t2402-worktree-list.sh ├── t2403-worktree-move.sh ├── t2404-worktree-config.sh ├── t2405-worktree-submodule.sh ├── t2406-worktree-repair.sh ├── t2407-worktree-heads.sh ├── t2500-untracked-overwriting.sh ├── t2501-cwd-empty.sh ├── t3000-ls-files-others.sh ├── t3001-ls-files-others-exclude.sh ├── t3002-ls-files-dashpath.sh ├── t3003-ls-files-exclude.sh ├── t3004-ls-files-basic.sh ├── t3005-ls-files-relative.sh ├── t3006-ls-files-long.sh ├── t3007-ls-files-recurse-submodules.sh ├── t3008-ls-files-lazy-init-name-hash.sh ├── t3009-ls-files-others-nonsubmodule.sh ├── t3010-ls-files-killed-modified.sh ├── t3011-common-prefixes-and-directory-traversal.sh ├── t3012-ls-files-dedup.sh ├── t3013-ls-files-format.sh ├── t3020-ls-files-error-unmatch.sh ├── t3040-subprojects-basic.sh ├── t3050-subprojects-fetch.sh ├── t3060-ls-files-with-tree.sh ├── t3070-wildmatch.sh ├── t3100-ls-tree-restrict.sh ├── t3101-ls-tree-dirname.sh ├── t3102-ls-tree-wildcards.sh ├── t3103-ls-tree-misc.sh ├── t3104-ls-tree-format.sh ├── t3105-ls-tree-output.sh ├── t3200-branch.sh ├── t3201-branch-contains.sh ├── t3202-show-branch.sh ├── t3203-branch-output.sh ├── t3204-branch-name-interpretation.sh ├── t3205-branch-color.sh ├── t3206-range-diff.sh ├── t3206 │ └── history.export ├── t3207-branch-submodule.sh ├── t3211-peel-ref.sh ├── t3300-funny-names.sh ├── t3301-notes.sh ├── t3302-notes-index-expensive.sh ├── t3303-notes-subtrees.sh ├── t3304-notes-mixed.sh ├── t3305-notes-fanout.sh ├── t3306-notes-prune.sh ├── t3307-notes-man.sh ├── t3308-notes-merge.sh ├── t3309-notes-merge-auto-resolve.sh ├── t3310-notes-merge-manual-resolve.sh ├── t3311-notes-merge-fanout.sh ├── t3320-notes-merge-worktrees.sh ├── t3321-notes-stripspace.sh ├── t3400-rebase.sh ├── t3401-rebase-and-am-rename.sh ├── t3402-rebase-merge.sh ├── t3403-rebase-skip.sh ├── t3404-rebase-interactive.sh ├── t3405-rebase-malformed.sh ├── t3406-rebase-message.sh ├── t3407-rebase-abort.sh ├── t3408-rebase-multi-line.sh ├── t3409-rebase-environ.sh ├── t3412-rebase-root.sh ├── t3413-rebase-hook.sh ├── t3415-rebase-autosquash.sh ├── t3416-rebase-onto-threedots.sh ├── t3417-rebase-whitespace-fix.sh ├── t3418-rebase-continue.sh ├── t3419-rebase-patch-id.sh ├── t3420-rebase-autostash.sh ├── t3421-rebase-topology-linear.sh ├── t3422-rebase-incompatible-options.sh ├── t3423-rebase-reword.sh ├── t3424-rebase-empty.sh ├── t3425-rebase-topology-merges.sh ├── t3426-rebase-submodule.sh ├── t3427-rebase-subtree.sh ├── t3428-rebase-signoff.sh ├── t3429-rebase-edit-todo.sh ├── t3430-rebase-merges.sh ├── t3431-rebase-fork-point.sh ├── t3432-rebase-fast-forward.sh ├── t3433-rebase-across-mode-change.sh ├── t3434-rebase-i18n.sh ├── t3434 │ ├── ISO8859-1.txt │ └── eucJP.txt ├── t3435-rebase-gpg-sign.sh ├── t3436-rebase-more-options.sh ├── t3437-rebase-fixup-options.sh ├── t3437 │ ├── expected-combined-message │ └── expected-squash-message ├── t3438-rebase-broken-files.sh ├── t3500-cherry.sh ├── t3501-revert-cherry-pick.sh ├── t3502-cherry-pick-merge.sh ├── t3503-cherry-pick-root.sh ├── t3504-cherry-pick-rerere.sh ├── t3505-cherry-pick-empty.sh ├── t3506-cherry-pick-ff.sh ├── t3507-cherry-pick-conflict.sh ├── t3508-cherry-pick-many-commits.sh ├── t3509-cherry-pick-merge-df.sh ├── t3510-cherry-pick-sequence.sh ├── t3511-cherry-pick-x.sh ├── t3512-cherry-pick-submodule.sh ├── t3513-revert-submodule.sh ├── t3514-cherry-pick-revert-gpg.sh ├── t3600-rm.sh ├── t3601-rm-pathspec-file.sh ├── t3602-rm-sparse-checkout.sh ├── t3650-replay-basics.sh ├── t3700-add.sh ├── t3701-add-interactive.sh ├── t3702-add-edit.sh ├── t3703-add-magic-pathspec.sh ├── t3704-add-pathspec-file.sh ├── t3705-add-sparse-checkout.sh ├── t3800-mktag.sh ├── t3900-i18n-commit.sh ├── t3900 │ ├── 1-UTF-8.txt │ ├── 2-UTF-8.txt │ ├── ISO-2022-JP.txt │ ├── ISO8859-1.txt │ ├── UTF-16.txt │ └── eucJP.txt ├── t3901-i18n-patch.sh ├── t3901 │ ├── 8859-1.txt │ └── utf8.txt ├── t3902-quoted.sh ├── t3903-stash.sh ├── t3904-stash-patch.sh ├── t3905-stash-include-untracked.sh ├── t3906-stash-submodule.sh ├── t3907-stash-show-config.sh ├── t3908-stash-in-worktree.sh ├── t3909-stash-pathspec-file.sh ├── t3910-mac-os-precompose.sh ├── t3920-crlf-messages.sh ├── t4000-diff-format.sh ├── t4001-diff-rename.sh ├── t4002-diff-basic.sh ├── t4003-diff-rename-1.sh ├── t4004-diff-rename-symlink.sh ├── t4005-diff-rename-2.sh ├── t4006-diff-mode.sh ├── t4007-rename-3.sh ├── t4008-diff-break-rewrite.sh ├── t4009-diff-rename-4.sh ├── t4010-diff-pathspec.sh ├── t4011-diff-symlink.sh ├── t4012-diff-binary.sh ├── t4013-diff-various.sh ├── t4013 │ ├── diff.config_format.subjectprefix_DIFFERENT_PREFIX │ ├── diff.diff-tree_--cc_--patch-with-stat_--summary_main │ ├── diff.diff-tree_--cc_--patch-with-stat_--summary_side │ ├── diff.diff-tree_--cc_--patch-with-stat_main │ ├── diff.diff-tree_--cc_--shortstat_main │ ├── diff.diff-tree_--cc_--stat_--summary_main │ ├── diff.diff-tree_--cc_--stat_--summary_side │ ├── diff.diff-tree_--cc_--stat_main │ ├── diff.diff-tree_--cc_--summary_REVERSE │ ├── diff.diff-tree_--cc_main │ ├── diff.diff-tree_--format=%N_note │ ├── diff.diff-tree_--patch-with-raw_initial │ ├── diff.diff-tree_--patch-with-stat_initial │ ├── diff.diff-tree_--pretty=oneline_--patch-with-raw_initial │ ├── diff.diff-tree_--pretty=oneline_--patch-with-stat_initial │ ├── diff.diff-tree_--pretty=oneline_--root_--patch-with-raw_initial │ ├── diff.diff-tree_--pretty=oneline_--root_--patch-with-stat_initial │ ├── diff.diff-tree_--pretty=oneline_--root_-p_initial │ ├── diff.diff-tree_--pretty=oneline_--root_initial │ ├── diff.diff-tree_--pretty=oneline_-p_initial │ ├── diff.diff-tree_--pretty=oneline_initial │ ├── diff.diff-tree_--pretty_--notes_note │ ├── diff.diff-tree_--pretty_--patch-with-raw_initial │ ├── diff.diff-tree_--pretty_--patch-with-stat_initial │ ├── diff.diff-tree_--pretty_--patch-with-stat_side │ ├── diff.diff-tree_--pretty_--root_--patch-with-raw_initial │ ├── diff.diff-tree_--pretty_--root_--patch-with-stat_initial │ ├── diff.diff-tree_--pretty_--root_--stat_--compact-summary_initial │ ├── diff.diff-tree_--pretty_--root_--stat_--summary_initial │ ├── diff.diff-tree_--pretty_--root_--stat_initial │ ├── diff.diff-tree_--pretty_--root_--summary_-r_initial │ ├── diff.diff-tree_--pretty_--root_--summary_initial │ ├── diff.diff-tree_--pretty_--root_-p_initial │ ├── diff.diff-tree_--pretty_--root_initial │ ├── diff.diff-tree_--pretty_--stat_--summary_initial │ ├── diff.diff-tree_--pretty_--stat_initial │ ├── diff.diff-tree_--pretty_--summary_initial │ ├── diff.diff-tree_--pretty_-R_--root_--stat_--compact-summary_initial │ ├── diff.diff-tree_--pretty_-p_initial │ ├── diff.diff-tree_--pretty_-p_side │ ├── diff.diff-tree_--pretty_initial │ ├── diff.diff-tree_--pretty_note │ ├── diff.diff-tree_--pretty_side │ ├── diff.diff-tree_--root_--abbrev_initial │ ├── diff.diff-tree_--root_--patch-with-raw_initial │ ├── diff.diff-tree_--root_--patch-with-stat_initial │ ├── diff.diff-tree_--root_-p_--abbrev=10_initial │ ├── diff.diff-tree_--root_-p_--full-index_--abbrev=10_initial │ ├── diff.diff-tree_--root_-p_--full-index_initial │ ├── diff.diff-tree_--root_-p_initial │ ├── diff.diff-tree_--root_-r_--abbrev=4_initial │ ├── diff.diff-tree_--root_-r_--abbrev_initial │ ├── diff.diff-tree_--root_-r_initial │ ├── diff.diff-tree_--root_initial │ ├── diff.diff-tree_--stat_--compact-summary_initial_mode │ ├── diff.diff-tree_--stat_initial_mode │ ├── diff.diff-tree_--summary_initial_mode │ ├── diff.diff-tree_-R_--stat_--compact-summary_initial_mode │ ├── diff.diff-tree_-c_--abbrev_main │ ├── diff.diff-tree_-c_--stat_--summary_main │ ├── diff.diff-tree_-c_--stat_--summary_side │ ├── diff.diff-tree_-c_--stat_main │ ├── diff.diff-tree_-c_main │ ├── diff.diff-tree_-m_main │ ├── diff.diff-tree_-p_-m_main │ ├── diff.diff-tree_-p_initial │ ├── diff.diff-tree_-p_main │ ├── diff.diff-tree_-r_--abbrev=4_initial │ ├── diff.diff-tree_-r_--abbrev_initial │ ├── diff.diff-tree_-r_initial │ ├── diff.diff-tree_initial │ ├── diff.diff-tree_initial_mode │ ├── diff.diff-tree_main │ ├── diff.diff_--abbrev_initial..side │ ├── diff.diff_--cached │ ├── diff.diff_--cached_--_file0 │ ├── diff.diff_--dirstat-by-file_initial_rearrange │ ├── diff.diff_--dirstat_--cc_main~1_main │ ├── diff.diff_--dirstat_initial_rearrange │ ├── diff.diff_--dirstat_main~1_main~2 │ ├── diff.diff_--line-prefix=abc_main_main^_side │ ├── diff.diff_--line-prefix_--cached_--_file0 │ ├── diff.diff_--name-status_dir2_dir │ ├── diff.diff_--no-index_--name-status_--_dir2_dir │ ├── diff.diff_--no-index_--name-status_dir2_dir │ ├── diff.diff_--no-index_--raw_--abbrev=4_dir2_dir │ ├── diff.diff_--no-index_--raw_--no-abbrev_dir2_dir │ ├── diff.diff_--no-index_--raw_dir2_dir │ ├── diff.diff_--no-index_dir_dir3 │ ├── diff.diff_--patch-with-raw_-r_initial..side │ ├── diff.diff_--patch-with-raw_initial..side │ ├── diff.diff_--patch-with-stat_-r_initial..side │ ├── diff.diff_--patch-with-stat_initial..side │ ├── diff.diff_--raw_--abbrev=4_initial │ ├── diff.diff_--raw_--no-abbrev_initial │ ├── diff.diff_--raw_initial │ ├── diff.diff_--stat_initial..side │ ├── diff.diff_-U1_initial..side │ ├── diff.diff_-U2_initial..side │ ├── diff.diff_-U_initial..side │ ├── diff.diff_-r_--stat_initial..side │ ├── diff.diff_-r_initial..side │ ├── diff.diff_initial..side │ ├── diff.diff_main_main^_side │ ├── diff.format-patch_--attach_--stdout_--suffix=.diff_initial..side │ ├── diff.format-patch_--attach_--stdout_initial..main │ ├── diff.format-patch_--attach_--stdout_initial..main^ │ ├── diff.format-patch_--attach_--stdout_initial..side │ ├── diff.format-patch_--inline_--stdout_--numbered-files_initial..main │ ├── diff.format-patch_--inline_--stdout_--subject-prefix=TESTCASE_initial..main │ ├── diff.format-patch_--inline_--stdout_initial..main │ ├── diff.format-patch_--inline_--stdout_initial..main^ │ ├── diff.format-patch_--inline_--stdout_initial..main^^ │ ├── diff.format-patch_--inline_--stdout_initial..side │ ├── diff.format-patch_--stdout_--cover-letter_-n_initial..main^ │ ├── diff.format-patch_--stdout_--no-numbered_initial..main │ ├── diff.format-patch_--stdout_--numbered_initial..main │ ├── diff.format-patch_--stdout_initial..main │ ├── diff.format-patch_--stdout_initial..main^ │ ├── diff.format-patch_--stdout_initial..side │ ├── diff.log_--cc_-m_-p_main │ ├── diff.log_--decorate=full_--all │ ├── diff.log_--decorate=full_--clear-decorations_--all │ ├── diff.log_--decorate=full_--decorate-all_--all │ ├── diff.log_--decorate_--all │ ├── diff.log_--decorate_--clear-decorations_--all │ ├── diff.log_--decorate_--decorate-all_--all │ ├── diff.log_--diff-merges=first-parent_main │ ├── diff.log_--diff-merges=off_-p_--first-parent_main │ ├── diff.log_--first-parent_--diff-merges=off_-p_main │ ├── diff.log_--no-diff-merges_-p_--first-parent_main │ ├── diff.log_--patch-with-stat_--summary_main_--_dir_ │ ├── diff.log_--patch-with-stat_main │ ├── diff.log_--patch-with-stat_main_--_dir_ │ ├── diff.log_--root_--cc_--patch-with-stat_--summary_main │ ├── diff.log_--root_--patch-with-stat_--summary_main │ ├── diff.log_--root_--patch-with-stat_main │ ├── diff.log_--root_-c_--patch-with-stat_--summary_main │ ├── diff.log_--root_-p_main │ ├── diff.log_--root_main │ ├── diff.log_-GF_-p_--pickaxe-all_main │ ├── diff.log_-GF_-p_main │ ├── diff.log_-GF_main │ ├── diff.log_-IA_-IB_-I1_-I2_-p_main │ ├── diff.log_-SF_-p_main │ ├── diff.log_-SF_main │ ├── diff.log_-SF_main_--max-count=0 │ ├── diff.log_-SF_main_--max-count=1 │ ├── diff.log_-SF_main_--max-count=2 │ ├── diff.log_-S_F_main │ ├── diff.log_-c_-m_-p_main │ ├── diff.log_-m_--raw_main │ ├── diff.log_-m_--stat_main │ ├── diff.log_-m_-p_--first-parent_main │ ├── diff.log_-m_-p_main │ ├── diff.log_-p_--diff-merges=first-parent_main │ ├── diff.log_-p_--first-parent_main │ ├── diff.log_-p_main │ ├── diff.log_main │ ├── diff.noellipses-diff-tree_--root_--abbrev_initial │ ├── diff.noellipses-diff-tree_--root_-r_--abbrev=4_initial │ ├── diff.noellipses-diff-tree_--root_-r_--abbrev_initial │ ├── diff.noellipses-diff-tree_-c_--abbrev_main │ ├── diff.noellipses-diff_--no-index_--raw_--abbrev=4_dir2_dir │ ├── diff.noellipses-diff_--no-index_--raw_dir2_dir │ ├── diff.noellipses-diff_--patch-with-raw_-r_initial..side │ ├── diff.noellipses-diff_--patch-with-raw_initial..side │ ├── diff.noellipses-diff_--raw_--abbrev=4_initial │ ├── diff.noellipses-diff_--raw_initial │ ├── diff.noellipses-show_--patch-with-raw_side │ ├── diff.noellipses-whatchanged_--root_main │ ├── diff.noellipses-whatchanged_-SF_main │ ├── diff.noellipses-whatchanged_main │ ├── diff.rev-list_--children_HEAD │ ├── diff.rev-list_--parents_HEAD │ ├── diff.show_--first-parent_main │ ├── diff.show_--patch-with-raw_side │ ├── diff.show_--patch-with-stat_--summary_side │ ├── diff.show_--patch-with-stat_side │ ├── diff.show_--root_initial │ ├── diff.show_--stat_--summary_side │ ├── diff.show_--stat_side │ ├── diff.show_-c_main │ ├── diff.show_-m_main │ ├── diff.show_initial │ ├── diff.show_main │ ├── diff.show_side │ ├── diff.whatchanged_--patch-with-stat_--summary_main_--_dir_ │ ├── diff.whatchanged_--patch-with-stat_main │ ├── diff.whatchanged_--patch-with-stat_main_--_dir_ │ ├── diff.whatchanged_--root_--cc_--patch-with-stat_--summary_main │ ├── diff.whatchanged_--root_--patch-with-stat_--summary_main │ ├── diff.whatchanged_--root_--patch-with-stat_main │ ├── diff.whatchanged_--root_-c_--patch-with-stat_--summary_main │ ├── diff.whatchanged_--root_-p_main │ ├── diff.whatchanged_--root_main │ ├── diff.whatchanged_-SF_-p_main │ ├── diff.whatchanged_-SF_main │ ├── diff.whatchanged_-p_main │ └── diff.whatchanged_main ├── t4014-format-patch.sh ├── t4015-diff-whitespace.sh ├── t4016-diff-quote.sh ├── t4017-diff-retval.sh ├── t4018-diff-funcname.sh ├── t4018 │ ├── README │ ├── bash-arithmetic-function │ ├── bash-bashism-style-compact │ ├── bash-bashism-style-complete-line-capture │ ├── bash-bashism-style-function │ ├── bash-bashism-style-whitespace │ ├── bash-conditional-function │ ├── bash-missing-parentheses │ ├── bash-mixed-style-compact │ ├── bash-mixed-style-function │ ├── bash-nested-functions │ ├── bash-other-characters │ ├── bash-posix-style-compact │ ├── bash-posix-style-complete-line-capture │ ├── bash-posix-style-function │ ├── bash-posix-style-single-command-function │ ├── bash-posix-style-whitespace │ ├── bash-subshell-function │ ├── bash-trailing-comment │ ├── cpp-c++-function │ ├── cpp-class-constructor │ ├── cpp-class-constructor-mem-init │ ├── cpp-class-definition │ ├── cpp-class-definition-derived │ ├── cpp-class-destructor │ ├── cpp-function-returning-global-type │ ├── cpp-function-returning-nested │ ├── cpp-function-returning-pointer │ ├── cpp-function-returning-reference │ ├── cpp-gnu-style-function │ ├── cpp-namespace-definition │ ├── cpp-operator-definition │ ├── cpp-skip-access-specifiers │ ├── cpp-skip-comment-block │ ├── cpp-skip-labels │ ├── cpp-struct-definition │ ├── cpp-struct-single-line │ ├── cpp-template-function-definition │ ├── cpp-union-definition │ ├── cpp-void-c-function │ ├── csharp-exclude-assignments │ ├── csharp-exclude-control-statements │ ├── csharp-exclude-exceptions │ ├── csharp-exclude-generic-method-calls │ ├── csharp-exclude-init-dispose │ ├── csharp-exclude-iterations │ ├── csharp-exclude-method-calls │ ├── csharp-exclude-other │ ├── csharp-method │ ├── csharp-method-array │ ├── csharp-method-explicit │ ├── csharp-method-generics │ ├── csharp-method-generics-alternate-spaces │ ├── csharp-method-modifiers │ ├── csharp-method-multiline │ ├── csharp-method-params │ ├── csharp-method-special-chars │ ├── csharp-method-with-spacing │ ├── csharp-property │ ├── csharp-property-braces-same-line │ ├── css-attribute-value-selector │ ├── css-block-level-@-statements │ ├── css-brace-in-col-1 │ ├── css-class-selector │ ├── css-colon-eol │ ├── css-colon-selector │ ├── css-common │ ├── css-id-selector │ ├── css-long-selector-list │ ├── css-prop-sans-indent │ ├── css-root-selector │ ├── css-short-selector-list │ ├── css-trailing-space │ ├── custom1-pattern │ ├── custom2-match-to-end-of-line │ ├── custom3-alternation-in-pattern │ ├── dts-labels │ ├── dts-node-unitless │ ├── dts-nodes │ ├── dts-nodes-boolean-prop │ ├── dts-nodes-comment1 │ ├── dts-nodes-comment2 │ ├── dts-nodes-multiline-prop │ ├── dts-reference │ ├── dts-root │ ├── dts-root-comment │ ├── elixir-do-not-pick-end │ ├── elixir-ex-unit-test │ ├── elixir-function │ ├── elixir-macro │ ├── elixir-module │ ├── elixir-module-func │ ├── elixir-nested-module │ ├── elixir-private-function │ ├── elixir-protocol │ ├── elixir-protocol-implementation │ ├── fortran-block-data │ ├── fortran-comment │ ├── fortran-comment-keyword │ ├── fortran-comment-legacy │ ├── fortran-comment-legacy-star │ ├── fortran-external-function │ ├── fortran-external-subroutine │ ├── fortran-module │ ├── fortran-module-procedure │ ├── fortran-program │ ├── fountain-scene │ ├── golang-complex-function │ ├── golang-func │ ├── golang-interface │ ├── golang-long-func │ ├── golang-struct │ ├── ini-section │ ├── ini-section-noindent │ ├── ini-section-same-line │ ├── ini-subsection │ ├── ini-subsection-noindent │ ├── java-class-brace-on-separate-line │ ├── java-class-member-function │ ├── java-class-space-before-type-parameters │ ├── java-class-type-parameters │ ├── java-class-type-parameters-implements │ ├── java-enum-constant │ ├── java-interface-type-parameters │ ├── java-interface-type-parameters-extends │ ├── java-method-return-generic-bounded │ ├── java-method-return-generic-wildcard │ ├── java-nested-field │ ├── java-non-sealed │ ├── java-record │ ├── java-record-space-before-components │ ├── java-record-type-parameters │ ├── java-sealed │ ├── java-sealed-permits │ ├── java-sealed-type-parameters │ ├── java-sealed-type-parameters-implements-permits │ ├── java-sealed-type-parameters-permits │ ├── kotlin-class │ ├── kotlin-enum-class │ ├── kotlin-fun │ ├── kotlin-inheritace-class │ ├── kotlin-inline-class │ ├── kotlin-interface │ ├── kotlin-nested-fun │ ├── kotlin-public-class │ ├── kotlin-sealed-class │ ├── markdown-heading-indented │ ├── markdown-heading-non-headings │ ├── matlab-class-definition │ ├── matlab-function │ ├── matlab-octave-section-1 │ ├── matlab-octave-section-2 │ ├── matlab-section │ ├── perl-skip-end-of-heredoc │ ├── perl-skip-forward-decl │ ├── perl-skip-sub-in-pod │ ├── perl-sub-definition │ ├── perl-sub-definition-kr-brace │ ├── php-abstract-class │ ├── php-abstract-method │ ├── php-class │ ├── php-enum │ ├── php-final-class │ ├── php-final-method │ ├── php-function │ ├── php-interface │ ├── php-method │ ├── php-trait │ ├── python-async-def │ ├── python-class │ ├── python-def │ ├── python-indented-async-def │ ├── python-indented-class │ ├── python-indented-def │ ├── r-indent │ ├── r-indent-nested │ ├── r-noindent │ ├── rust-fn │ ├── rust-impl │ ├── rust-macro-rules │ ├── rust-struct │ ├── rust-trait │ ├── scheme-class │ ├── scheme-def │ ├── scheme-def-variant │ ├── scheme-define-slash-public │ ├── scheme-define-syntax │ ├── scheme-define-variant │ ├── scheme-library │ ├── scheme-local-define │ ├── scheme-module │ ├── scheme-top-level-define │ └── scheme-user-defined-define ├── t4019-diff-wserror.sh ├── t4020-diff-external.sh ├── t4020 │ └── diff.NUL ├── t4021-format-patch-numbered.sh ├── t4022-diff-rewrite.sh ├── t4023-diff-rename-typechange.sh ├── t4024-diff-optimize-common.sh ├── t4025-hunk-header.sh ├── t4026-color.sh ├── t4027-diff-submodule.sh ├── t4028-format-patch-mime-headers.sh ├── t4029-diff-trailing-space.sh ├── t4030-diff-textconv.sh ├── t4031-diff-rewrite-binary.sh ├── t4032-diff-inter-hunk-context.sh ├── t4033-diff-patience.sh ├── t4034-diff-words.sh ├── t4034 │ ├── ada │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── bash │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── bibtex │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── cpp │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── csharp │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── css │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── dts │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── fortran │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── html │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── java │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── kotlin │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── matlab │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── objc │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── pascal │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── perl │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── php │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── python │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── ruby │ │ ├── expect │ │ ├── post │ │ └── pre │ ├── scheme │ │ ├── expect │ │ ├── post │ │ └── pre │ └── tex │ │ ├── expect │ │ ├── post │ │ └── pre ├── t4035-diff-quiet.sh ├── t4036-format-patch-signer-mime.sh ├── t4037-diff-r-t-dirs.sh ├── t4038-diff-combined.sh ├── t4039-diff-assume-unchanged.sh ├── t4040-whitespace-status.sh ├── t4041-diff-submodule-option.sh ├── t4042-diff-textconv-caching.sh ├── t4043-diff-rename-binary.sh ├── t4044-diff-index-unique-abbrev.sh ├── t4045-diff-relative.sh ├── t4046-diff-unmerged.sh ├── t4047-diff-dirstat.sh ├── t4048-diff-combined-binary.sh ├── t4049-diff-stat-count.sh ├── t4050-diff-histogram.sh ├── t4051-diff-function-context.sh ├── t4051 │ ├── appended1.c │ ├── appended2.c │ ├── dummy.c │ ├── hello.c │ └── includes.c ├── t4052-stat-output.sh ├── t4053-diff-no-index.sh ├── t4054-diff-bogus-tree.sh ├── t4055-diff-context.sh ├── t4056-diff-order.sh ├── t4057-diff-combined-paths.sh ├── t4058-diff-duplicates.sh ├── t4059-diff-submodule-not-initialized.sh ├── t4060-diff-submodule-option-diff-format.sh ├── t4061-diff-indent.sh ├── t4062-diff-pickaxe.sh ├── t4063-diff-blobs.sh ├── t4064-diff-oidfind.sh ├── t4065-diff-anchored.sh ├── t4066-diff-emit-delay.sh ├── t4067-diff-partial-clone.sh ├── t4068-diff-symmetric-merge-base.sh ├── t4069-remerge-diff.sh ├── t4070-diff-pairs.sh ├── t4071-diff-minimal.sh ├── t4072-diff-max-depth.sh ├── t4100-apply-stat.sh ├── t4100 │ ├── t-apply-1.expect │ ├── t-apply-1.patch │ ├── t-apply-2.expect │ ├── t-apply-2.patch │ ├── t-apply-3.expect │ ├── t-apply-3.patch │ ├── t-apply-4.expect │ ├── t-apply-4.patch │ ├── t-apply-5.expect │ ├── t-apply-5.patch │ ├── t-apply-6.expect │ ├── t-apply-6.patch │ ├── t-apply-7.expect │ ├── t-apply-7.patch │ ├── t-apply-8.expect │ ├── t-apply-8.patch │ ├── t-apply-9.expect │ └── t-apply-9.patch ├── t4101-apply-nonl.sh ├── t4101 │ ├── diff.0-1 │ ├── diff.0-2 │ ├── diff.0-3 │ ├── diff.1-0 │ ├── diff.1-2 │ ├── diff.1-3 │ ├── diff.2-0 │ ├── diff.2-1 │ ├── diff.2-3 │ ├── diff.3-0 │ ├── diff.3-1 │ └── diff.3-2 ├── t4102-apply-rename.sh ├── t4103-apply-binary.sh ├── t4104-apply-boundary.sh ├── t4105-apply-fuzz.sh ├── t4106-apply-stdin.sh ├── t4107-apply-ignore-whitespace.sh ├── t4108-apply-threeway.sh ├── t4109-apply-multifrag.sh ├── t4109 │ ├── expect-1 │ ├── expect-2 │ ├── expect-3 │ ├── patch1.patch │ ├── patch2.patch │ ├── patch3.patch │ └── patch4.patch ├── t4110-apply-scan.sh ├── t4110 │ ├── expect │ ├── patch1.patch │ ├── patch2.patch │ ├── patch3.patch │ ├── patch4.patch │ └── patch5.patch ├── t4111-apply-subdir.sh ├── t4112-apply-renames.sh ├── t4113-apply-ending.sh ├── t4114-apply-typechange.sh ├── t4115-apply-symlink.sh ├── t4116-apply-reverse.sh ├── t4117-apply-reject.sh ├── t4118-apply-empty-context.sh ├── t4119-apply-config.sh ├── t4120-apply-popt.sh ├── t4121-apply-diffs.sh ├── t4122-apply-symlink-inside.sh ├── t4123-apply-shrink.sh ├── t4124-apply-ws-rule.sh ├── t4125-apply-ws-fuzz.sh ├── t4126-apply-empty.sh ├── t4127-apply-same-fn.sh ├── t4128-apply-root.sh ├── t4129-apply-samemode.sh ├── t4130-apply-criss-cross-rename.sh ├── t4131-apply-fake-ancestor.sh ├── t4132-apply-removal.sh ├── t4133-apply-filenames.sh ├── t4134-apply-submodule.sh ├── t4135-apply-weird-filenames.sh ├── t4135 │ ├── .gitignore │ ├── add-plain.diff │ ├── add-with backslash.diff │ ├── add-with quote.diff │ ├── add-with spaces.diff │ ├── add-with tab.diff │ ├── damaged-tz.diff │ ├── damaged.diff │ ├── diff-plain.diff │ ├── diff-with backslash.diff │ ├── diff-with quote.diff │ ├── diff-with spaces.diff │ ├── diff-with tab.diff │ ├── funny-tz.diff │ ├── git-plain.diff │ ├── git-with backslash.diff │ ├── git-with quote.diff │ ├── git-with spaces.diff │ ├── git-with tab.diff │ └── make-patches ├── t4136-apply-check.sh ├── t4137-apply-submodule.sh ├── t4138-apply-ws-expansion.sh ├── t4139-apply-escape.sh ├── t4140-apply-ita.sh ├── t4141-apply-too-large.sh ├── t4150-am.sh ├── t4151-am-abort.sh ├── t4152-am-subjects.sh ├── t4153-am-resume-override-opts.sh ├── t4200-rerere.sh ├── t4201-shortlog.sh ├── t4202-log.sh ├── t4203-mailmap.sh ├── t4204-patch-id.sh ├── t4205-log-pretty-formats.sh ├── t4206-log-follow-harder-copies.sh ├── t4207-log-decoration-colors.sh ├── t4208-log-magic-pathspec.sh ├── t4209-log-pickaxe.sh ├── t4210-log-i18n.sh ├── t4211-line-log.sh ├── t4211 │ ├── history.export │ ├── sha1 │ │ ├── expect.beginning-of-file │ │ ├── expect.end-of-file │ │ ├── expect.move-support-f │ │ ├── expect.multiple │ │ ├── expect.multiple-overlapping │ │ ├── expect.multiple-superset │ │ ├── expect.no-assertion-error │ │ ├── expect.parallel-change-f-to-main │ │ ├── expect.simple-f │ │ ├── expect.simple-f-to-main │ │ ├── expect.simple-main │ │ ├── expect.simple-main-to-end │ │ ├── expect.two-ranges │ │ └── expect.vanishes-early │ └── sha256 │ │ ├── expect.beginning-of-file │ │ ├── expect.end-of-file │ │ ├── expect.move-support-f │ │ ├── expect.multiple │ │ ├── expect.multiple-overlapping │ │ ├── expect.multiple-superset │ │ ├── expect.no-assertion-error │ │ ├── expect.parallel-change-f-to-main │ │ ├── expect.simple-f │ │ ├── expect.simple-f-to-main │ │ ├── expect.simple-main │ │ ├── expect.simple-main-to-end │ │ ├── expect.two-ranges │ │ └── expect.vanishes-early ├── t4212-log-corrupt.sh ├── t4213-log-tabexpand.sh ├── t4214-log-graph-octopus.sh ├── t4215-log-skewed-merges.sh ├── t4216-log-bloom.sh ├── t4217-log-limit.sh ├── t4252-am-options.sh ├── t4252 │ ├── am-test-1-1 │ ├── am-test-1-2 │ ├── am-test-2-1 │ ├── am-test-2-2 │ ├── am-test-3-1 │ ├── am-test-3-2 │ ├── am-test-4-1 │ ├── am-test-4-2 │ ├── am-test-5-1 │ ├── am-test-5-2 │ ├── am-test-6-1 │ ├── file-1-0 │ └── file-2-0 ├── t4253-am-keep-cr-dos.sh ├── t4254-am-corrupt.sh ├── t4255-am-submodule.sh ├── t4256-am-format-flowed.sh ├── t4256 │ └── 1 │ │ ├── mailinfo.c │ │ ├── mailinfo.c.orig │ │ └── patch ├── t4257-am-interactive.sh ├── t4258-am-quoted-cr.sh ├── t4258 │ └── mbox ├── t4300-merge-tree.sh ├── t4301-merge-tree-write-tree.sh ├── t5000-tar-tree.sh ├── t5000 │ ├── huge-and-future.tar │ ├── huge-object │ └── pax.tar ├── t5001-archive-attr.sh ├── t5002-archive-attr-pattern.sh ├── t5003-archive-zip.sh ├── t5003 │ └── infozip-symlinks.zip ├── t5004-archive-corner-cases.sh ├── t5004 │ ├── big-pack.zip │ ├── empty-with-pax-header.tar │ └── empty.zip ├── t5100-mailinfo.sh ├── t5100 │ ├── .gitattributes │ ├── 0001mboxrd │ ├── 0002mboxrd │ ├── comment.expect │ ├── comment.in │ ├── embed-from.expect │ ├── embed-from.in │ ├── empty │ ├── info-from.expect │ ├── info-from.in │ ├── info0001 │ ├── info0002 │ ├── info0003 │ ├── info0004 │ ├── info0005 │ ├── info0006 │ ├── info0007 │ ├── info0008 │ ├── info0009 │ ├── info0010 │ ├── info0011 │ ├── info0012 │ ├── info0012--message-id │ ├── info0013 │ ├── info0014 │ ├── info0014--scissors │ ├── info0015 │ ├── info0015--no-inbody-headers │ ├── info0016 │ ├── info0016--no-inbody-headers │ ├── info0017 │ ├── info0018 │ ├── info0018--no-inbody-headers │ ├── msg0001 │ ├── msg0002 │ ├── msg0003 │ ├── msg0004 │ ├── msg0005 │ ├── msg0006 │ ├── msg0007 │ ├── msg0008 │ ├── msg0009 │ ├── msg0010 │ ├── msg0011 │ ├── msg0012 │ ├── msg0012--message-id │ ├── msg0013 │ ├── msg0014 │ ├── msg0014--scissors │ ├── msg0015 │ ├── msg0015--no-inbody-headers │ ├── msg0016 │ ├── msg0016--no-inbody-headers │ ├── msg0017 │ ├── msg0018 │ ├── msg0018--no-inbody-headers │ ├── nul-b64.expect │ ├── nul-b64.in │ ├── nul-plain │ ├── patch0001 │ ├── patch0002 │ ├── patch0003 │ ├── patch0004 │ ├── patch0005 │ ├── patch0006 │ ├── patch0007 │ ├── patch0008 │ ├── patch0009 │ ├── patch0010 │ ├── patch0011 │ ├── patch0012 │ ├── patch0012--message-id │ ├── patch0013 │ ├── patch0014 │ ├── patch0014--scissors │ ├── patch0015 │ ├── patch0015--no-inbody-headers │ ├── patch0016 │ ├── patch0016--no-inbody-headers │ ├── patch0017 │ ├── patch0018 │ ├── patch0018--no-inbody-headers │ ├── quoted-cr-info │ ├── quoted-cr-msg │ ├── quoted-cr-patch │ ├── quoted-cr.mbox │ ├── quoted-from.expect │ ├── quoted-from.in │ ├── quoted-string.expect │ ├── quoted-string.in │ ├── rfc2047-info-0001 │ ├── rfc2047-info-0002 │ ├── rfc2047-info-0003 │ ├── rfc2047-info-0004 │ ├── rfc2047-info-0005 │ ├── rfc2047-info-0006 │ ├── rfc2047-info-0007 │ ├── rfc2047-info-0008 │ ├── rfc2047-info-0009 │ ├── rfc2047-info-0010 │ ├── rfc2047-info-0011 │ ├── rfc2047-samples.mbox │ ├── sample.mbox │ └── sample.mboxrd ├── t5150-request-pull.sh ├── t5200-update-server-info.sh ├── t5300-pack-object.sh ├── t5301-sliding-window.sh ├── t5302-pack-index.sh ├── t5303-pack-corruption-resilience.sh ├── t5304-prune.sh ├── t5305-include-tag.sh ├── t5306-pack-nobase.sh ├── t5307-pack-missing-commit.sh ├── t5308-pack-detect-duplicates.sh ├── t5309-pack-delta-cycles.sh ├── t5310-pack-bitmaps.sh ├── t5311-pack-bitmaps-shallow.sh ├── t5312-prune-corruption.sh ├── t5313-pack-bounds-checks.sh ├── t5314-pack-cycle-detection.sh ├── t5315-pack-objects-compression.sh ├── t5316-pack-delta-depth.sh ├── t5317-pack-objects-filter-objects.sh ├── t5318-commit-graph.sh ├── t5319-multi-pack-index.sh ├── t5319 │ └── no-objects.midx ├── t5320-delta-islands.sh ├── t5321-pack-large-objects.sh ├── t5322-pack-objects-sparse.sh ├── t5323-pack-redundant.sh ├── t5324-split-commit-graph.sh ├── t5325-reverse-index.sh ├── t5326-multi-pack-bitmaps.sh ├── t5327-multi-pack-bitmaps-rev.sh ├── t5328-commit-graph-64bit-time.sh ├── t5329-pack-objects-cruft.sh ├── t5330-no-lazy-fetch-with-commit-graph.sh ├── t5331-pack-objects-stdin.sh ├── t5332-multi-pack-reuse.sh ├── t5333-pseudo-merge-bitmaps.sh ├── t5334-incremental-multi-pack-index.sh ├── t5351-unpack-large-objects.sh ├── t5400-send-pack.sh ├── t5401-update-hooks.sh ├── t5402-post-merge-hook.sh ├── t5403-post-checkout-hook.sh ├── t5404-tracking-branches.sh ├── t5405-send-pack-rewind.sh ├── t5406-remote-rejects.sh ├── t5407-post-rewrite-hook.sh ├── t5408-send-pack-stdin.sh ├── t5409-colorize-remote-messages.sh ├── t5410-receive-pack.sh ├── t5411-proc-receive-hook.sh ├── t5411 │ ├── common-functions.sh │ ├── once-0010-report-status-v1.sh │ ├── test-0000-standard-git-push.sh │ ├── test-0001-standard-git-push--porcelain.sh │ ├── test-0002-pre-receive-declined.sh │ ├── test-0003-pre-receive-declined--porcelain.sh │ ├── test-0010-proc-receive-settings.sh │ ├── test-0011-no-hook-error.sh │ ├── test-0012-no-hook-error--porcelain.sh │ ├── test-0013-bad-protocol.sh │ ├── test-0014-bad-protocol--porcelain.sh │ ├── test-0020-report-ng.sh │ ├── test-0021-report-ng--porcelain.sh │ ├── test-0022-report-unexpect-ref.sh │ ├── test-0023-report-unexpect-ref--porcelain.sh │ ├── test-0024-report-unknown-ref.sh │ ├── test-0025-report-unknown-ref--porcelain.sh │ ├── test-0026-push-options.sh │ ├── test-0027-push-options--porcelain.sh │ ├── test-0030-report-ok.sh │ ├── test-0031-report-ok--porcelain.sh │ ├── test-0032-report-with-options.sh │ ├── test-0033-report-with-options--porcelain.sh │ ├── test-0034-report-ft.sh │ ├── test-0035-report-ft--porcelain.sh │ ├── test-0036-report-multi-rewrite-for-one-ref.sh │ ├── test-0037-report-multi-rewrite-for-one-ref--porcelain.sh │ ├── test-0038-report-mixed-refs.sh │ ├── test-0039-report-mixed-refs--porcelain.sh │ ├── test-0040-process-all-refs.sh │ ├── test-0041-process-all-refs--porcelain.sh │ └── test-0050-proc-receive-refs-with-modifiers.sh ├── t5500-fetch-pack.sh ├── t5501-fetch-push-alternates.sh ├── t5502-quickfetch.sh ├── t5503-tagfollow.sh ├── t5504-fetch-receive-strict.sh ├── t5505-remote.sh ├── t5506-remote-groups.sh ├── t5507-remote-environment.sh ├── t5509-fetch-push-namespaces.sh ├── t5510-fetch.sh ├── t5511-refspec.sh ├── t5512-ls-remote.sh ├── t5513-fetch-track.sh ├── t5514-fetch-multiple.sh ├── t5515-fetch-merge-logic.sh ├── t5515 │ ├── fetch.br-branches-default │ ├── fetch.br-branches-default-merge │ ├── fetch.br-branches-default-merge_branches-default │ ├── fetch.br-branches-default-octopus │ ├── fetch.br-branches-default-octopus_branches-default │ ├── fetch.br-branches-default_branches-default │ ├── fetch.br-branches-one │ ├── fetch.br-branches-one-merge │ ├── fetch.br-branches-one-merge_branches-one │ ├── fetch.br-branches-one-octopus │ ├── fetch.br-branches-one-octopus_branches-one │ ├── fetch.br-branches-one_branches-one │ ├── fetch.br-config-explicit │ ├── fetch.br-config-explicit-merge │ ├── fetch.br-config-explicit-merge_config-explicit │ ├── fetch.br-config-explicit-octopus │ ├── fetch.br-config-explicit-octopus_config-explicit │ ├── fetch.br-config-explicit_config-explicit │ ├── fetch.br-config-glob │ ├── fetch.br-config-glob-merge │ ├── fetch.br-config-glob-merge_config-glob │ ├── fetch.br-config-glob-octopus │ ├── fetch.br-config-glob-octopus_config-glob │ ├── fetch.br-config-glob_config-glob │ ├── fetch.br-remote-explicit │ ├── fetch.br-remote-explicit-merge │ ├── fetch.br-remote-explicit-merge_remote-explicit │ ├── fetch.br-remote-explicit-octopus │ ├── fetch.br-remote-explicit-octopus_remote-explicit │ ├── fetch.br-remote-explicit_remote-explicit │ ├── fetch.br-remote-glob │ ├── fetch.br-remote-glob-merge │ ├── fetch.br-remote-glob-merge_remote-glob │ ├── fetch.br-remote-glob-octopus │ ├── fetch.br-remote-glob-octopus_remote-glob │ ├── fetch.br-remote-glob_remote-glob │ ├── fetch.br-unconfig │ ├── fetch.br-unconfig_--tags_.._.git │ ├── fetch.br-unconfig_.._.git │ ├── fetch.br-unconfig_.._.git_one │ ├── fetch.br-unconfig_.._.git_one_tag_tag-one_tag_tag-three-file │ ├── fetch.br-unconfig_.._.git_one_two │ ├── fetch.br-unconfig_.._.git_tag_tag-one-tree_tag_tag-three-file │ ├── fetch.br-unconfig_.._.git_tag_tag-one_tag_tag-three │ ├── fetch.br-unconfig_branches-default │ ├── fetch.br-unconfig_branches-one │ ├── fetch.br-unconfig_config-explicit │ ├── fetch.br-unconfig_config-glob │ ├── fetch.br-unconfig_remote-explicit │ ├── fetch.br-unconfig_remote-glob │ ├── fetch.main │ ├── fetch.main_--tags_.._.git │ ├── fetch.main_.._.git │ ├── fetch.main_.._.git_one │ ├── fetch.main_.._.git_one_tag_tag-one_tag_tag-three-file │ ├── fetch.main_.._.git_one_two │ ├── fetch.main_.._.git_tag_tag-one-tree_tag_tag-three-file │ ├── fetch.main_.._.git_tag_tag-one_tag_tag-three │ ├── fetch.main_branches-default │ ├── fetch.main_branches-one │ ├── fetch.main_config-explicit │ ├── fetch.main_config-glob │ ├── fetch.main_remote-explicit │ ├── fetch.main_remote-glob │ ├── refs.br-branches-default │ ├── refs.br-branches-default-merge │ ├── refs.br-branches-default-merge_branches-default │ ├── refs.br-branches-default-octopus │ ├── refs.br-branches-default-octopus_branches-default │ ├── refs.br-branches-default_branches-default │ ├── refs.br-branches-one │ ├── refs.br-branches-one-merge │ ├── refs.br-branches-one-merge_branches-one │ ├── refs.br-branches-one-octopus │ ├── refs.br-branches-one-octopus_branches-one │ ├── refs.br-branches-one_branches-one │ ├── refs.br-config-explicit │ ├── refs.br-config-explicit-merge │ ├── refs.br-config-explicit-merge_config-explicit │ ├── refs.br-config-explicit-octopus │ ├── refs.br-config-explicit-octopus_config-explicit │ ├── refs.br-config-explicit_config-explicit │ ├── refs.br-config-glob │ ├── refs.br-config-glob-merge │ ├── refs.br-config-glob-merge_config-glob │ ├── refs.br-config-glob-octopus │ ├── refs.br-config-glob-octopus_config-glob │ ├── refs.br-config-glob_config-glob │ ├── refs.br-remote-explicit │ ├── refs.br-remote-explicit-merge │ ├── refs.br-remote-explicit-merge_remote-explicit │ ├── refs.br-remote-explicit-octopus │ ├── refs.br-remote-explicit-octopus_remote-explicit │ ├── refs.br-remote-explicit_remote-explicit │ ├── refs.br-remote-glob │ ├── refs.br-remote-glob-merge │ ├── refs.br-remote-glob-merge_remote-glob │ ├── refs.br-remote-glob-octopus │ ├── refs.br-remote-glob-octopus_remote-glob │ ├── refs.br-remote-glob_remote-glob │ ├── refs.br-unconfig │ ├── refs.br-unconfig_--tags_.._.git │ ├── refs.br-unconfig_.._.git │ ├── refs.br-unconfig_.._.git_one │ ├── refs.br-unconfig_.._.git_one_tag_tag-one_tag_tag-three-file │ ├── refs.br-unconfig_.._.git_one_two │ ├── refs.br-unconfig_.._.git_tag_tag-one-tree_tag_tag-three-file │ ├── refs.br-unconfig_.._.git_tag_tag-one_tag_tag-three │ ├── refs.br-unconfig_branches-default │ ├── refs.br-unconfig_branches-one │ ├── refs.br-unconfig_config-explicit │ ├── refs.br-unconfig_config-glob │ ├── refs.br-unconfig_remote-explicit │ ├── refs.br-unconfig_remote-glob │ ├── refs.main │ ├── refs.main_--tags_.._.git │ ├── refs.main_.._.git │ ├── refs.main_.._.git_one │ ├── refs.main_.._.git_one_tag_tag-one_tag_tag-three-file │ ├── refs.main_.._.git_one_two │ ├── refs.main_.._.git_tag_tag-one-tree_tag_tag-three-file │ ├── refs.main_.._.git_tag_tag-one_tag_tag-three │ ├── refs.main_branches-default │ ├── refs.main_branches-one │ ├── refs.main_config-explicit │ ├── refs.main_config-glob │ ├── refs.main_remote-explicit │ └── refs.main_remote-glob ├── t5516-fetch-push.sh ├── t5517-push-mirror.sh ├── t5518-fetch-exit-status.sh ├── t5519-push-alternates.sh ├── t5520-pull.sh ├── t5521-pull-options.sh ├── t5522-pull-symlink.sh ├── t5523-push-upstream.sh ├── t5524-pull-msg.sh ├── t5525-fetch-tagopt.sh ├── t5526-fetch-submodules.sh ├── t5527-fetch-odd-refs.sh ├── t5528-push-default.sh ├── t5529-push-errors.sh ├── t5530-upload-pack-error.sh ├── t5531-deep-submodule-push.sh ├── t5532-fetch-proxy.sh ├── t5533-push-cas.sh ├── t5534-push-signed.sh ├── t5535-fetch-push-symref.sh ├── t5536-fetch-conflicts.sh ├── t5537-fetch-shallow.sh ├── t5538-push-shallow.sh ├── t5539-fetch-http-shallow.sh ├── t5540-http-push-webdav.sh ├── t5541-http-push-smart.sh ├── t5542-push-http-shallow.sh ├── t5543-atomic-push.sh ├── t5544-pack-objects-hook.sh ├── t5545-push-options.sh ├── t5546-receive-limits.sh ├── t5547-push-quarantine.sh ├── t5548-push-porcelain.sh ├── t5549-fetch-push-http.sh ├── t5550-http-fetch-dumb.sh ├── t5551-http-fetch-smart.sh ├── t5552-skipping-fetch-negotiator.sh ├── t5553-set-upstream.sh ├── t5554-noop-fetch-negotiator.sh ├── t5555-http-smart-common.sh ├── t5557-http-get.sh ├── t5558-clone-bundle-uri.sh ├── t5559-http-fetch-smart-http2.sh ├── t5560-http-backend-noserver.sh ├── t5561-http-backend.sh ├── t5562-http-backend-content-length.sh ├── t5562 │ └── invoke-with-content-length.pl ├── t5563-simple-http-auth.sh ├── t5564-http-proxy.sh ├── t556x_common ├── t5570-git-daemon.sh ├── t5571-pre-push-hook.sh ├── t5572-pull-submodule.sh ├── t5573-pull-verify-signatures.sh ├── t5574-fetch-output.sh ├── t5580-unc-paths.sh ├── t5581-http-curl-verbose.sh ├── t5582-fetch-negative-refspec.sh ├── t5583-push-branches.sh ├── t5600-clone-fail-cleanup.sh ├── t5601-clone.sh ├── t5602-clone-remote-exec.sh ├── t5603-clone-dirname.sh ├── t5604-clone-reference.sh ├── t5605-clone-local.sh ├── t5606-clone-options.sh ├── t5607-clone-bundle.sh ├── t5608-clone-2gb.sh ├── t5609-clone-branch.sh ├── t5610-clone-detached.sh ├── t5611-clone-config.sh ├── t5612-clone-refspec.sh ├── t5613-info-alternate.sh ├── t5614-clone-submodules-shallow.sh ├── t5615-alternate-env.sh ├── t5616-partial-clone.sh ├── t5617-clone-submodules-remote.sh ├── t5618-alternate-refs.sh ├── t5619-clone-local-ambiguous-transport.sh ├── t5620-backfill.sh ├── t5621-clone-revision.sh ├── t5700-protocol-v1.sh ├── t5701-git-serve.sh ├── t5702-protocol-v2.sh ├── t5703-upload-pack-ref-in-want.sh ├── t5704-protocol-violations.sh ├── t5705-session-id-in-capabilities.sh ├── t5710-promisor-remote-capability.sh ├── t5730-protocol-v2-bundle-uri-file.sh ├── t5731-protocol-v2-bundle-uri-git.sh ├── t5732-protocol-v2-bundle-uri-http.sh ├── t5750-bundle-uri-parse.sh ├── t5801-remote-helpers.sh ├── t5801 │ ├── git-remote-nourl │ └── git-remote-testgit ├── t5802-connect-helper.sh ├── t5810-proto-disable-local.sh ├── t5811-proto-disable-git.sh ├── t5812-proto-disable-http.sh ├── t5813-proto-disable-ssh.sh ├── t5814-proto-disable-ext.sh ├── t5815-submodule-protos.sh ├── t5900-repo-selection.sh ├── t6000-rev-list-misc.sh ├── t6001-rev-list-graft.sh ├── t6002-rev-list-bisect.sh ├── t6003-rev-list-topo-order.sh ├── t6004-rev-list-path-optim.sh ├── t6005-rev-list-count.sh ├── t6006-rev-list-format.sh ├── t6007-rev-list-cherry-pick-file.sh ├── t6008-rev-list-submodule.sh ├── t6009-rev-list-parent.sh ├── t6010-merge-base.sh ├── t6011-rev-list-with-bad-commit.sh ├── t6012-rev-list-simplify.sh ├── t6013-rev-list-reverse-parents.sh ├── t6014-rev-list-all.sh ├── t6016-rev-list-graph-simplify-history.sh ├── t6017-rev-list-stdin.sh ├── t6018-rev-list-glob.sh ├── t6019-rev-list-ancestry-path.sh ├── t6020-bundle-misc.sh ├── t6021-rev-list-exclude-hidden.sh ├── t6022-rev-list-missing.sh ├── t6030-bisect-porcelain.sh ├── t6040-tracking-info.sh ├── t6041-bisect-submodule.sh ├── t6050-replace.sh ├── t6060-merge-index.sh ├── t6100-rev-list-in-order.sh ├── t6101-rev-parse-parents.sh ├── t6102-rev-list-unexpected-objects.sh ├── t6110-rev-list-sparse.sh ├── t6111-rev-list-treesame.sh ├── t6112-rev-list-filters-objects.sh ├── t6113-rev-list-bitmap-filters.sh ├── t6114-keep-packs.sh ├── t6115-rev-list-du.sh ├── t6120-describe.sh ├── t6130-pathspec-noglob.sh ├── t6131-pathspec-icase.sh ├── t6132-pathspec-exclude.sh ├── t6133-pathspec-rev-dwim.sh ├── t6134-pathspec-in-submodule.sh ├── t6135-pathspec-with-attrs.sh ├── t6136-pathspec-in-bare.sh ├── t6137-pathspec-wildcards-literal.sh ├── t6200-fmt-merge-msg.sh ├── t6300-for-each-ref.sh ├── t6301-for-each-ref-errors.sh ├── t6302-for-each-ref-filter.sh ├── t6400-merge-df.sh ├── t6401-merge-criss-cross.sh ├── t6402-merge-rename.sh ├── t6403-merge-file.sh ├── t6404-recursive-merge.sh ├── t6405-merge-symlinks.sh ├── t6406-merge-attr.sh ├── t6407-merge-binary.sh ├── t6408-merge-up-to-date.sh ├── t6409-merge-subtree.sh ├── t6411-merge-filemode.sh ├── t6412-merge-large-rename.sh ├── t6413-merge-crlf.sh ├── t6414-merge-rename-nocruft.sh ├── t6415-merge-dir-to-symlink.sh ├── t6416-recursive-corner-cases.sh ├── t6417-merge-ours-theirs.sh ├── t6418-merge-text-auto.sh ├── t6419-merge-ignorecase.sh ├── t6421-merge-partial-clone.sh ├── t6422-merge-rename-corner-cases.sh ├── t6423-merge-rename-directories.sh ├── t6424-merge-unrelated-index-changes.sh ├── t6425-merge-rename-delete.sh ├── t6426-merge-skip-unneeded-updates.sh ├── t6427-diff3-conflict-markers.sh ├── t6428-merge-conflicts-sparse.sh ├── t6429-merge-sequence-rename-caching.sh ├── t6430-merge-recursive.sh ├── t6431-merge-criscross.sh ├── t6432-merge-recursive-space-options.sh ├── t6433-merge-toplevel.sh ├── t6434-merge-recursive-rename-options.sh ├── t6435-merge-sparse.sh ├── t6436-merge-overwrite.sh ├── t6437-submodule-merge.sh ├── t6438-submodule-directory-file-conflicts.sh ├── t6439-merge-co-error-msgs.sh ├── t6500-gc.sh ├── t6501-freshen-objects.sh ├── t6600-test-reach.sh ├── t6601-path-walk.sh ├── t6700-tree-depth.sh ├── t7001-mv.sh ├── t7002-mv-sparse-checkout.sh ├── t7003-filter-branch.sh ├── t7004-tag.sh ├── t7005-editor.sh ├── t7006-pager.sh ├── t7007-show.sh ├── t7008-filter-branch-null-sha1.sh ├── t7010-setup.sh ├── t7011-skip-worktree-reading.sh ├── t7012-skip-worktree-writing.sh ├── t7030-verify-tag.sh ├── t7031-verify-tag-signed-ssh.sh ├── t7060-wtstatus.sh ├── t7061-wtstatus-ignore.sh ├── t7062-wtstatus-ignorecase.sh ├── t7063-status-untracked-cache.sh ├── t7064-wtstatus-pv2.sh ├── t7101-reset-empty-subdirs.sh ├── t7102-reset.sh ├── t7103-reset-bare.sh ├── t7104-reset-hard.sh ├── t7105-reset-patch.sh ├── t7106-reset-unborn-branch.sh ├── t7107-reset-pathspec-file.sh ├── t7108-reset-stdin.sh ├── t7110-reset-merge.sh ├── t7111-reset-table.sh ├── t7112-reset-submodule.sh ├── t7113-post-index-change-hook.sh ├── t7201-co.sh ├── t7300-clean.sh ├── t7301-clean-interactive.sh ├── t7400-submodule-basic.sh ├── t7401-submodule-summary.sh ├── t7402-submodule-rebase.sh ├── t7403-submodule-sync.sh ├── t7406-submodule-update.sh ├── t7407-submodule-foreach.sh ├── t7408-submodule-reference.sh ├── t7409-submodule-detached-work-tree.sh ├── t7411-submodule-config.sh ├── t7412-submodule-absorbgitdirs.sh ├── t7413-submodule-is-active.sh ├── t7414-submodule-mistakes.sh ├── t7416-submodule-dash-url.sh ├── t7417-submodule-path-url.sh ├── t7418-submodule-sparse-gitmodules.sh ├── t7419-submodule-set-branch.sh ├── t7420-submodule-set-url.sh ├── t7421-submodule-summary-add.sh ├── t7422-submodule-output.sh ├── t7423-submodule-symlinks.sh ├── t7424-submodule-mixed-ref-formats.sh ├── t7429-submodule-long-path.sh ├── t7450-bad-git-dotfiles.sh ├── t7500-commit-template-squash-signoff.sh ├── t7500 │ ├── add-comments │ ├── add-content │ ├── add-content-and-comment │ ├── add-signed-off │ ├── add-whitespaced-content │ └── edit-content ├── t7501-commit-basic-functionality.sh ├── t7502-commit-porcelain.sh ├── t7503-pre-commit-and-pre-merge-commit-hooks.sh ├── t7504-commit-msg-hook.sh ├── t7505-prepare-commit-msg-hook.sh ├── t7505 │ ├── expected-rebase-i │ └── expected-rebase-p ├── t7506-status-submodule.sh ├── t7507-commit-verbose.sh ├── t7508-status.sh ├── t7509-commit-authorship.sh ├── t7510-signed-commit.sh ├── t7511-status-index.sh ├── t7512-status-help.sh ├── t7513-interpret-trailers.sh ├── t7514-commit-patch.sh ├── t7515-status-symlinks.sh ├── t7516-commit-races.sh ├── t7517-per-repo-email.sh ├── t7518-ident-corner-cases.sh ├── t7519-status-fsmonitor.sh ├── t7519 │ ├── fsmonitor-all │ ├── fsmonitor-all-v2 │ ├── fsmonitor-env │ ├── fsmonitor-none │ ├── fsmonitor-watchman │ └── fsmonitor-watchman-v2 ├── t7520-ignored-hook-warning.sh ├── t7521-ignored-mode.sh ├── t7524-commit-summary.sh ├── t7525-status-rename.sh ├── t7526-commit-pathspec-file.sh ├── t7527-builtin-fsmonitor.sh ├── t7528-signed-commit-ssh.sh ├── t7600-merge.sh ├── t7601-merge-pull-config.sh ├── t7602-merge-octopus-many.sh ├── t7603-merge-reduce-heads.sh ├── t7604-merge-custom-message.sh ├── t7605-merge-resolve.sh ├── t7606-merge-custom.sh ├── t7607-merge-state.sh ├── t7608-merge-messages.sh ├── t7609-mergetool--lib.sh ├── t7610-mergetool.sh ├── t7611-merge-abort.sh ├── t7612-merge-verify-signatures.sh ├── t7614-merge-signoff.sh ├── t7615-diff-algo-with-mergy-operations.sh ├── t7615 │ ├── base.c │ ├── ours.c │ └── theirs.c ├── t7700-repack.sh ├── t7701-repack-unpack-unreachable.sh ├── t7702-repack-cyclic-alternate.sh ├── t7703-repack-geometric.sh ├── t7704-repack-cruft.sh ├── t7800-difftool.sh ├── t7810-grep.sh ├── t7811-grep-open.sh ├── t7812-grep-icase-non-ascii.sh ├── t7813-grep-icase-iso.sh ├── t7814-grep-recurse-submodules.sh ├── t7815-grep-binary.sh ├── t7816-grep-binary-pattern.sh ├── t7817-grep-sparse-checkout.sh ├── t7900-maintenance.sh ├── t8001-annotate.sh ├── t8002-blame.sh ├── t8003-blame-corner-cases.sh ├── t8004-blame-with-conflicts.sh ├── t8005-blame-i18n.sh ├── t8005 │ ├── euc-japan.txt │ ├── sjis.txt │ └── utf8.txt ├── t8006-blame-textconv.sh ├── t8007-cat-file-textconv.sh ├── t8008-blame-formats.sh ├── t8009-blame-vs-topicbranches.sh ├── t8010-cat-file-filters.sh ├── t8011-blame-split-file.sh ├── t8012-blame-colors.sh ├── t8013-blame-ignore-revs.sh ├── t8014-blame-ignore-fuzzy.sh ├── t8020-last-modified.sh ├── t8100-git-survey.sh ├── t9001-send-email.sh ├── t9002-column.sh ├── t9003-help-autocorrect.sh ├── t9100-git-svn-basic.sh ├── t9101-git-svn-props.sh ├── t9102-git-svn-deep-rmdir.sh ├── t9103-git-svn-tracked-directory-removed.sh ├── t9104-git-svn-follow-parent.sh ├── t9105-git-svn-commit-diff.sh ├── t9106-git-svn-commit-diff-clobber.sh ├── t9107-git-svn-migrate.sh ├── t9108-git-svn-glob.sh ├── t9109-git-svn-multi-glob.sh ├── t9110-git-svn-use-svm-props.sh ├── t9110 │ └── svm.dump ├── t9111-git-svn-use-svnsync-props.sh ├── t9111 │ └── svnsync.dump ├── t9112-git-svn-md5less-file.sh ├── t9113-git-svn-dcommit-new-file.sh ├── t9114-git-svn-dcommit-merge.sh ├── t9115-git-svn-dcommit-funky-renames.sh ├── t9115 │ └── funky-names.dump ├── t9116-git-svn-log.sh ├── t9117-git-svn-init-clone.sh ├── t9118-git-svn-funky-branch-names.sh ├── t9119-git-svn-info.sh ├── t9120-git-svn-clone-with-percent-escapes.sh ├── t9121-git-svn-fetch-renamed-dir.sh ├── t9121 │ └── renamed-dir.dump ├── t9122-git-svn-author.sh ├── t9123-git-svn-rebuild-with-rewriteroot.sh ├── t9124-git-svn-dcommit-auto-props.sh ├── t9125-git-svn-multi-glob-branch-names.sh ├── t9126-git-svn-follow-deleted-readded-directory.sh ├── t9126 │ └── follow-deleted-readded.dump ├── t9127-git-svn-partial-rebuild.sh ├── t9128-git-svn-cmd-branch.sh ├── t9129-git-svn-i18n-commitencoding.sh ├── t9130-git-svn-authors-file.sh ├── t9131-git-svn-empty-symlink.sh ├── t9132-git-svn-broken-symlink.sh ├── t9133-git-svn-nested-git-repo.sh ├── t9134-git-svn-ignore-paths.sh ├── t9135-git-svn-moved-branch-empty-file.sh ├── t9135 │ └── svn.dump ├── t9136-git-svn-recreated-branch-empty-file.sh ├── t9136 │ └── svn.dump ├── t9137-git-svn-dcommit-clobber-series.sh ├── t9138-git-svn-authors-prog.sh ├── t9139-git-svn-non-utf8-commitencoding.sh ├── t9140-git-svn-reset.sh ├── t9141-git-svn-multiple-branches.sh ├── t9142-git-svn-shallow-clone.sh ├── t9143-git-svn-gc.sh ├── t9144-git-svn-old-rev_map.sh ├── t9145-git-svn-master-branch.sh ├── t9146-git-svn-empty-dirs.sh ├── t9147-git-svn-include-paths.sh ├── t9148-git-svn-propset.sh ├── t9150-svk-mergetickets.sh ├── t9150 │ ├── make-svk-dump │ └── svk-merge.dump ├── t9151-svn-mergeinfo.sh ├── t9151 │ ├── .gitignore │ ├── make-svnmerge-dump │ └── svn-mergeinfo.dump ├── t9152-svn-empty-dirs-after-gc.sh ├── t9153-git-svn-rewrite-uuid.sh ├── t9153 │ └── svn.dump ├── t9154-git-svn-fancy-glob.sh ├── t9154 │ └── svn.dump ├── t9155-git-svn-fetch-deleted-tag.sh ├── t9156-git-svn-fetch-deleted-tag-2.sh ├── t9157-git-svn-fetch-merge.sh ├── t9158-git-svn-mergeinfo.sh ├── t9159-git-svn-no-parent-mergeinfo.sh ├── t9160-git-svn-preserve-empty-dirs.sh ├── t9161-git-svn-mergeinfo-push.sh ├── t9161 │ └── branches.dump ├── t9162-git-svn-dcommit-interactive.sh ├── t9163-git-svn-reset-clears-caches.sh ├── t9164-git-svn-dcommit-concurrent.sh ├── t9165-git-svn-fetch-merge-branch-of-branch.sh ├── t9166-git-svn-fetch-merge-branch-of-branch2.sh ├── t9167-git-svn-cmd-branch-subproject.sh ├── t9168-git-svn-partially-globbed-names.sh ├── t9169-git-svn-dcommit-crlf.sh ├── t9200-git-cvsexportcommit.sh ├── t9210-scalar.sh ├── t9211-scalar-clone.sh ├── t9300-fast-import.sh ├── t9301-fast-import-notes.sh ├── t9302-fast-import-unpack-limit.sh ├── t9303-fast-import-compression.sh ├── t9304-fast-import-marks.sh ├── t9305-fast-import-signatures.sh ├── t9306-fast-import-signed-tags.sh ├── t9350-fast-export.sh ├── t9350 │ ├── broken-iso-8859-7-commit-message.txt │ └── simple-iso-8859-7-commit-message.txt ├── t9351-fast-export-anonymize.sh ├── t9400-git-cvsserver-server.sh ├── t9401-git-cvsserver-crlf.sh ├── t9402-git-cvsserver-refs.sh ├── t9500-gitweb-standalone-no-errors.sh ├── t9501-gitweb-standalone-http-status.sh ├── t9502-gitweb-standalone-parse-output.sh ├── t9600-cvsimport.sh ├── t9601-cvsimport-vendor-branch.sh ├── t9601 │ └── cvsroot │ │ ├── .gitattributes │ │ ├── CVSROOT │ │ └── .gitignore │ │ └── module │ │ ├── added-imported.txt,v │ │ ├── imported-anonymously.txt,v │ │ ├── imported-modified-imported.txt,v │ │ ├── imported-modified.txt,v │ │ ├── imported-once.txt,v │ │ └── imported-twice.txt,v ├── t9602-cvsimport-branches-tags.sh ├── t9602 │ ├── README │ └── cvsroot │ │ ├── .gitattributes │ │ ├── CVSROOT │ │ └── .gitignore │ │ └── module │ │ ├── default,v │ │ ├── sub1 │ │ ├── default,v │ │ ├── subsubA │ │ │ └── default,v │ │ └── subsubB │ │ │ └── default,v │ │ ├── sub2 │ │ ├── Attic │ │ │ └── branch_B_MIXED_only,v │ │ ├── default,v │ │ └── subsubA │ │ │ └── default,v │ │ └── sub3 │ │ └── default,v ├── t9603-cvsimport-patchsets.sh ├── t9603 │ └── cvsroot │ │ ├── .gitattributes │ │ ├── CVSROOT │ │ └── .gitignore │ │ └── module │ │ ├── a,v │ │ └── b,v ├── t9604-cvsimport-timestamps.sh ├── t9604 │ └── cvsroot │ │ ├── .gitattributes │ │ ├── CVSROOT │ │ └── .gitignore │ │ └── module │ │ └── a,v ├── t9700-perl-git.sh ├── t9700 │ └── test.pl ├── t9800-git-p4-basic.sh ├── t9801-git-p4-branch.sh ├── t9802-git-p4-filetype.sh ├── t9803-git-p4-shell-metachars.sh ├── t9804-git-p4-label.sh ├── t9805-git-p4-skip-submit-edit.sh ├── t9806-git-p4-options.sh ├── t9807-git-p4-submit.sh ├── t9808-git-p4-chdir.sh ├── t9809-git-p4-client-view.sh ├── t9810-git-p4-rcs.sh ├── t9811-git-p4-label-import.sh ├── t9812-git-p4-wildcards.sh ├── t9813-git-p4-preserve-users.sh ├── t9814-git-p4-rename.sh ├── t9815-git-p4-submit-fail.sh ├── t9816-git-p4-locked.sh ├── t9817-git-p4-exclude.sh ├── t9818-git-p4-block.sh ├── t9819-git-p4-case-folding.sh ├── t9820-git-p4-editor-handling.sh ├── t9821-git-p4-path-variations.sh ├── t9822-git-p4-path-encoding.sh ├── t9823-git-p4-mock-lfs.sh ├── t9824-git-p4-git-lfs.sh ├── t9825-git-p4-handle-utf16-without-bom.sh ├── t9826-git-p4-keep-empty-commits.sh ├── t9827-git-p4-change-filetype.sh ├── t9828-git-p4-map-user.sh ├── t9829-git-p4-jobs.sh ├── t9830-git-p4-symlink-dir.sh ├── t9831-git-p4-triggers.sh ├── t9832-unshelve.sh ├── t9833-errors.sh ├── t9834-git-p4-file-dir-bug.sh ├── t9835-git-p4-metadata-encoding-python2.sh ├── t9836-git-p4-metadata-encoding-python3.sh ├── t9850-shell.sh ├── t9901-git-web--browse.sh ├── t9902-completion.sh ├── t9903-bash-prompt.sh ├── test-lib-functions.sh ├── test-lib-github-workflow-markup.sh ├── test-lib-junit.sh ├── test-lib.sh ├── test-terminal.perl ├── unit-tests │ ├── .gitignore │ ├── clar │ │ ├── .editorconfig │ │ ├── .github │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── COPYING │ │ ├── README.md │ │ ├── clar.c │ │ ├── clar.h │ │ ├── clar │ │ │ ├── fixtures.h │ │ │ ├── fs.h │ │ │ ├── print.h │ │ │ ├── sandbox.h │ │ │ └── summary.h │ │ ├── example │ │ │ ├── CMakeLists.txt │ │ │ ├── example.c │ │ │ └── main.c │ │ ├── generate.py │ │ └── test │ │ │ ├── CMakeLists.txt │ │ │ ├── expected │ │ │ ├── help │ │ │ ├── quiet │ │ │ ├── specific_test │ │ │ ├── stop_on_failure │ │ │ ├── suite_names │ │ │ ├── summary.xml │ │ │ ├── summary_with_filename │ │ │ ├── summary_without_filename │ │ │ ├── tap │ │ │ └── without_arguments │ │ │ ├── main.c │ │ │ ├── selftest.c │ │ │ ├── selftest.h │ │ │ └── suites │ │ │ ├── CMakeLists.txt │ │ │ ├── combined.c │ │ │ ├── main.c │ │ │ ├── pointer.c │ │ │ └── resources │ │ │ └── test │ │ │ └── file │ ├── generate-clar-decls.sh │ ├── generate-clar-suites.sh │ ├── lib-oid.c │ ├── lib-oid.h │ ├── lib-reftable.c │ ├── lib-reftable.h │ ├── test-lib.c │ ├── test-lib.h │ ├── u-ctype.c │ ├── u-dir.c │ ├── u-example-decorate.c │ ├── u-hash.c │ ├── u-hashmap.c │ ├── u-mem-pool.c │ ├── u-mingw.c │ ├── u-oid-array.c │ ├── u-oidmap.c │ ├── u-oidtree.c │ ├── u-prio-queue.c │ ├── u-reftable-basics.c │ ├── u-reftable-block.c │ ├── u-reftable-merged.c │ ├── u-reftable-pq.c │ ├── u-reftable-readwrite.c │ ├── u-reftable-record.c │ ├── u-reftable-stack.c │ ├── u-reftable-table.c │ ├── u-reftable-tree.c │ ├── u-strbuf.c │ ├── u-strcmp-offset.c │ ├── u-string-list.c │ ├── u-strvec.c │ ├── u-trailer.c │ ├── u-urlmatch-normalization.c │ ├── unit-test.c │ └── unit-test.h └── valgrind │ ├── .gitignore │ ├── analyze.sh │ ├── default.supp │ └── valgrind.sh ├── tag.c ├── tag.h ├── tar.h ├── tempfile.c ├── tempfile.h ├── templates ├── .gitignore ├── Makefile ├── description ├── hooks │ ├── applypatch-msg.sample │ ├── commit-msg.sample │ ├── fsmonitor-watchman.sample │ ├── meson.build │ ├── post-update.sample │ ├── pre-applypatch.sample │ ├── pre-commit.sample │ ├── pre-merge-commit.sample │ ├── pre-push.sample │ ├── pre-rebase.sample │ ├── pre-receive.sample │ ├── prepare-commit-msg.sample │ ├── push-to-checkout.sample │ ├── sendemail-validate.sample │ └── update.sample ├── info │ ├── exclude │ └── meson.build └── meson.build ├── thread-utils.c ├── thread-utils.h ├── tmp-objdir.c ├── tmp-objdir.h ├── trace.c ├── trace.h ├── trace2.c ├── trace2.h ├── trace2 ├── tr2_cfg.c ├── tr2_cfg.h ├── tr2_cmd_name.c ├── tr2_cmd_name.h ├── tr2_ctr.c ├── tr2_ctr.h ├── tr2_dst.c ├── tr2_dst.h ├── tr2_sid.c ├── tr2_sid.h ├── tr2_sysenv.c ├── tr2_sysenv.h ├── tr2_tbuf.c ├── tr2_tbuf.h ├── tr2_tgt.h ├── tr2_tgt_event.c ├── tr2_tgt_normal.c ├── tr2_tgt_perf.c ├── tr2_tls.c ├── tr2_tls.h ├── tr2_tmr.c └── tr2_tmr.h ├── trailer.c ├── trailer.h ├── transport-helper.c ├── transport-internal.h ├── transport.c ├── transport.h ├── tree-diff.c ├── tree-walk.c ├── tree-walk.h ├── tree.c ├── tree.h ├── unicode-width.h ├── unimplemented.sh ├── unix-socket.c ├── unix-socket.h ├── unix-stream-server.c ├── unix-stream-server.h ├── unpack-trees.c ├── unpack-trees.h ├── upload-pack.c ├── upload-pack.h ├── url.c ├── url.h ├── urlmatch.c ├── urlmatch.h ├── usage.c ├── userdiff.c ├── userdiff.h ├── utf8.c ├── utf8.h ├── varint.c ├── varint.h ├── version-def.h.in ├── version.c ├── version.h ├── versioncmp.c ├── versioncmp.h ├── walker.c ├── walker.h ├── wildmatch.c ├── wildmatch.h ├── worktree.c ├── worktree.h ├── wrapper.c ├── wrapper.h ├── write-or-die.c ├── write-or-die.h ├── ws.c ├── ws.h ├── wt-status.c ├── wt-status.h ├── xdiff-interface.c ├── xdiff-interface.h └── xdiff ├── xdiff.h ├── xdiffi.c ├── xdiffi.h ├── xemit.c ├── xemit.h ├── xhistogram.c ├── xinclude.h ├── xmacros.h ├── xmerge.c ├── xpatience.c ├── xprepare.c ├── xprepare.h ├── xtypes.h ├── xutils.c └── xutils.h /.cirrus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.cirrus.yml -------------------------------------------------------------------------------- /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.clang-format -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.gitmodules -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.mailmap -------------------------------------------------------------------------------- /.tsan-suppressions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/.tsan-suppressions -------------------------------------------------------------------------------- /ARCHITECTURE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ARCHITECTURE.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/COPYING -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/Cargo.toml -------------------------------------------------------------------------------- /GIT-VERSION-FILE.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/GIT-VERSION-FILE.in -------------------------------------------------------------------------------- /GIT-VERSION-GEN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/GIT-VERSION-GEN -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/INSTALL -------------------------------------------------------------------------------- /LGPL-2.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/LGPL-2.1 -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/README.md -------------------------------------------------------------------------------- /RelNotes: -------------------------------------------------------------------------------- 1 | Documentation/RelNotes/2.52.0.adoc -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/SECURITY.md -------------------------------------------------------------------------------- /abspath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/abspath.c -------------------------------------------------------------------------------- /abspath.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/abspath.h -------------------------------------------------------------------------------- /aclocal.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/aclocal.m4 -------------------------------------------------------------------------------- /add-interactive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/add-interactive.c -------------------------------------------------------------------------------- /add-interactive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/add-interactive.h -------------------------------------------------------------------------------- /add-patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/add-patch.c -------------------------------------------------------------------------------- /advice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/advice.c -------------------------------------------------------------------------------- /advice.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/advice.h -------------------------------------------------------------------------------- /alias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/alias.c -------------------------------------------------------------------------------- /alias.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/alias.h -------------------------------------------------------------------------------- /alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/alloc.c -------------------------------------------------------------------------------- /alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/alloc.h -------------------------------------------------------------------------------- /apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/apply.c -------------------------------------------------------------------------------- /apply.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/apply.h -------------------------------------------------------------------------------- /archive-tar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/archive-tar.c -------------------------------------------------------------------------------- /archive-zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/archive-zip.c -------------------------------------------------------------------------------- /archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/archive.c -------------------------------------------------------------------------------- /archive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/archive.h -------------------------------------------------------------------------------- /attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/attr.c -------------------------------------------------------------------------------- /attr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/attr.h -------------------------------------------------------------------------------- /banned.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/banned.h -------------------------------------------------------------------------------- /base85.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/base85.c -------------------------------------------------------------------------------- /base85.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/base85.h -------------------------------------------------------------------------------- /bisect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bisect.c -------------------------------------------------------------------------------- /bisect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bisect.h -------------------------------------------------------------------------------- /blame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/blame.c -------------------------------------------------------------------------------- /blame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/blame.h -------------------------------------------------------------------------------- /blob.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/blob.c -------------------------------------------------------------------------------- /blob.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/blob.h -------------------------------------------------------------------------------- /block-sha1/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/block-sha1/sha1.c -------------------------------------------------------------------------------- /block-sha1/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/block-sha1/sha1.h -------------------------------------------------------------------------------- /bloom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bloom.c -------------------------------------------------------------------------------- /bloom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bloom.h -------------------------------------------------------------------------------- /branch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/branch.c -------------------------------------------------------------------------------- /branch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/branch.h -------------------------------------------------------------------------------- /builtin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin.h -------------------------------------------------------------------------------- /builtin/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/add.c -------------------------------------------------------------------------------- /builtin/am.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/am.c -------------------------------------------------------------------------------- /builtin/annotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/annotate.c -------------------------------------------------------------------------------- /builtin/apply.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/apply.c -------------------------------------------------------------------------------- /builtin/archive.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/archive.c -------------------------------------------------------------------------------- /builtin/backfill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/backfill.c -------------------------------------------------------------------------------- /builtin/bisect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/bisect.c -------------------------------------------------------------------------------- /builtin/blame.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/blame.c -------------------------------------------------------------------------------- /builtin/branch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/branch.c -------------------------------------------------------------------------------- /builtin/bugreport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/bugreport.c -------------------------------------------------------------------------------- /builtin/bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/bundle.c -------------------------------------------------------------------------------- /builtin/cat-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/cat-file.c -------------------------------------------------------------------------------- /builtin/checkout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/checkout.c -------------------------------------------------------------------------------- /builtin/clean.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/clean.c -------------------------------------------------------------------------------- /builtin/clone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/clone.c -------------------------------------------------------------------------------- /builtin/column.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/column.c -------------------------------------------------------------------------------- /builtin/commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/commit.c -------------------------------------------------------------------------------- /builtin/config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/config.c -------------------------------------------------------------------------------- /builtin/describe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/describe.c -------------------------------------------------------------------------------- /builtin/diagnose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/diagnose.c -------------------------------------------------------------------------------- /builtin/diff-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/diff-tree.c -------------------------------------------------------------------------------- /builtin/diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/diff.c -------------------------------------------------------------------------------- /builtin/difftool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/difftool.c -------------------------------------------------------------------------------- /builtin/fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/fetch.c -------------------------------------------------------------------------------- /builtin/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/fsck.c -------------------------------------------------------------------------------- /builtin/gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/gc.c -------------------------------------------------------------------------------- /builtin/grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/grep.c -------------------------------------------------------------------------------- /builtin/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/help.c -------------------------------------------------------------------------------- /builtin/hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/hook.c -------------------------------------------------------------------------------- /builtin/init-db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/init-db.c -------------------------------------------------------------------------------- /builtin/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/log.c -------------------------------------------------------------------------------- /builtin/ls-files.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/ls-files.c -------------------------------------------------------------------------------- /builtin/ls-remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/ls-remote.c -------------------------------------------------------------------------------- /builtin/ls-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/ls-tree.c -------------------------------------------------------------------------------- /builtin/mailinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/mailinfo.c -------------------------------------------------------------------------------- /builtin/mailsplit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/mailsplit.c -------------------------------------------------------------------------------- /builtin/merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/merge.c -------------------------------------------------------------------------------- /builtin/mktag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/mktag.c -------------------------------------------------------------------------------- /builtin/mktree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/mktree.c -------------------------------------------------------------------------------- /builtin/mv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/mv.c -------------------------------------------------------------------------------- /builtin/name-rev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/name-rev.c -------------------------------------------------------------------------------- /builtin/notes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/notes.c -------------------------------------------------------------------------------- /builtin/pack-refs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/pack-refs.c -------------------------------------------------------------------------------- /builtin/patch-id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/patch-id.c -------------------------------------------------------------------------------- /builtin/prune.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/prune.c -------------------------------------------------------------------------------- /builtin/pull.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/pull.c -------------------------------------------------------------------------------- /builtin/push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/push.c -------------------------------------------------------------------------------- /builtin/read-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/read-tree.c -------------------------------------------------------------------------------- /builtin/rebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/rebase.c -------------------------------------------------------------------------------- /builtin/reflog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/reflog.c -------------------------------------------------------------------------------- /builtin/refs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/refs.c -------------------------------------------------------------------------------- /builtin/remote-fd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/remote-fd.c -------------------------------------------------------------------------------- /builtin/remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/remote.c -------------------------------------------------------------------------------- /builtin/repack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/repack.c -------------------------------------------------------------------------------- /builtin/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/replace.c -------------------------------------------------------------------------------- /builtin/replay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/replay.c -------------------------------------------------------------------------------- /builtin/repo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/repo.c -------------------------------------------------------------------------------- /builtin/rerere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/rerere.c -------------------------------------------------------------------------------- /builtin/reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/reset.c -------------------------------------------------------------------------------- /builtin/rev-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/rev-list.c -------------------------------------------------------------------------------- /builtin/rev-parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/rev-parse.c -------------------------------------------------------------------------------- /builtin/revert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/revert.c -------------------------------------------------------------------------------- /builtin/rm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/rm.c -------------------------------------------------------------------------------- /builtin/send-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/send-pack.c -------------------------------------------------------------------------------- /builtin/shortlog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/shortlog.c -------------------------------------------------------------------------------- /builtin/show-ref.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/show-ref.c -------------------------------------------------------------------------------- /builtin/stash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/stash.c -------------------------------------------------------------------------------- /builtin/survey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/survey.c -------------------------------------------------------------------------------- /builtin/tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/tag.c -------------------------------------------------------------------------------- /builtin/var.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/var.c -------------------------------------------------------------------------------- /builtin/worktree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/builtin/worktree.c -------------------------------------------------------------------------------- /bundle-uri.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bundle-uri.c -------------------------------------------------------------------------------- /bundle-uri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bundle-uri.h -------------------------------------------------------------------------------- /bundle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bundle.c -------------------------------------------------------------------------------- /bundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/bundle.h -------------------------------------------------------------------------------- /cache-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/cache-tree.c -------------------------------------------------------------------------------- /cache-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/cache-tree.h -------------------------------------------------------------------------------- /cbtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/cbtree.c -------------------------------------------------------------------------------- /cbtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/cbtree.h -------------------------------------------------------------------------------- /chdir-notify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/chdir-notify.c -------------------------------------------------------------------------------- /chdir-notify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/chdir-notify.h -------------------------------------------------------------------------------- /check-builtins.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/check-builtins.sh -------------------------------------------------------------------------------- /checkout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/checkout.c -------------------------------------------------------------------------------- /checkout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/checkout.h -------------------------------------------------------------------------------- /chunk-format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/chunk-format.c -------------------------------------------------------------------------------- /chunk-format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/chunk-format.h -------------------------------------------------------------------------------- /ci/config/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ci/config/README -------------------------------------------------------------------------------- /ci/install-sdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ci/install-sdk.ps1 -------------------------------------------------------------------------------- /ci/lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ci/lib.sh -------------------------------------------------------------------------------- /color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/color.c -------------------------------------------------------------------------------- /color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/color.h -------------------------------------------------------------------------------- /column.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/column.c -------------------------------------------------------------------------------- /column.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/column.h -------------------------------------------------------------------------------- /combine-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/combine-diff.c -------------------------------------------------------------------------------- /command-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/command-list.txt -------------------------------------------------------------------------------- /commit-graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-graph.c -------------------------------------------------------------------------------- /commit-graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-graph.h -------------------------------------------------------------------------------- /commit-reach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-reach.c -------------------------------------------------------------------------------- /commit-reach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-reach.h -------------------------------------------------------------------------------- /commit-slab-decl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-slab-decl.h -------------------------------------------------------------------------------- /commit-slab-impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-slab-impl.h -------------------------------------------------------------------------------- /commit-slab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit-slab.h -------------------------------------------------------------------------------- /commit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit.c -------------------------------------------------------------------------------- /commit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/commit.h -------------------------------------------------------------------------------- /common-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/common-exit.c -------------------------------------------------------------------------------- /common-init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/common-init.c -------------------------------------------------------------------------------- /common-init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/common-init.h -------------------------------------------------------------------------------- /common-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/common-main.c -------------------------------------------------------------------------------- /compat/access.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/access.c -------------------------------------------------------------------------------- /compat/basename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/basename.c -------------------------------------------------------------------------------- /compat/bswap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/bswap.h -------------------------------------------------------------------------------- /compat/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/compiler.h -------------------------------------------------------------------------------- /compat/disk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/disk.h -------------------------------------------------------------------------------- /compat/fileno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/fileno.c -------------------------------------------------------------------------------- /compat/fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/fopen.c -------------------------------------------------------------------------------- /compat/hstrerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/hstrerror.c -------------------------------------------------------------------------------- /compat/inet_ntop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/inet_ntop.c -------------------------------------------------------------------------------- /compat/inet_pton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/inet_pton.c -------------------------------------------------------------------------------- /compat/memmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/memmem.c -------------------------------------------------------------------------------- /compat/mingw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/mingw.c -------------------------------------------------------------------------------- /compat/mingw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/mingw.h -------------------------------------------------------------------------------- /compat/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/mkdir.c -------------------------------------------------------------------------------- /compat/mkdtemp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/mkdtemp.c -------------------------------------------------------------------------------- /compat/mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/mmap.c -------------------------------------------------------------------------------- /compat/msvc-posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/msvc-posix.h -------------------------------------------------------------------------------- /compat/msvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/msvc.c -------------------------------------------------------------------------------- /compat/msvc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/msvc.h -------------------------------------------------------------------------------- /compat/nonblock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/nonblock.c -------------------------------------------------------------------------------- /compat/nonblock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/nonblock.h -------------------------------------------------------------------------------- /compat/obstack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/obstack.c -------------------------------------------------------------------------------- /compat/obstack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/obstack.h -------------------------------------------------------------------------------- /compat/open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/open.c -------------------------------------------------------------------------------- /compat/poll/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/poll/poll.c -------------------------------------------------------------------------------- /compat/poll/poll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/poll/poll.h -------------------------------------------------------------------------------- /compat/posix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/posix.h -------------------------------------------------------------------------------- /compat/pread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/pread.c -------------------------------------------------------------------------------- /compat/qsort_s.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/qsort_s.c -------------------------------------------------------------------------------- /compat/setenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/setenv.c -------------------------------------------------------------------------------- /compat/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/snprintf.c -------------------------------------------------------------------------------- /compat/stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/stat.c -------------------------------------------------------------------------------- /compat/strcasestr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/strcasestr.c -------------------------------------------------------------------------------- /compat/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/strdup.c -------------------------------------------------------------------------------- /compat/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/strlcpy.c -------------------------------------------------------------------------------- /compat/strtoimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/strtoimax.c -------------------------------------------------------------------------------- /compat/strtoumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/strtoumax.c -------------------------------------------------------------------------------- /compat/terminal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/terminal.c -------------------------------------------------------------------------------- /compat/terminal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/terminal.h -------------------------------------------------------------------------------- /compat/unsetenv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/unsetenv.c -------------------------------------------------------------------------------- /compat/vcbuild/include/utime.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compat/win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/win32.h -------------------------------------------------------------------------------- /compat/win32/alloca.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /compat/win32/wsl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/win32/wsl.c -------------------------------------------------------------------------------- /compat/win32/wsl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/win32/wsl.h -------------------------------------------------------------------------------- /compat/win32mmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/win32mmap.c -------------------------------------------------------------------------------- /compat/winansi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/compat/winansi.c -------------------------------------------------------------------------------- /config.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/config.c -------------------------------------------------------------------------------- /config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/config.h -------------------------------------------------------------------------------- /config.mak.dev: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/config.mak.dev -------------------------------------------------------------------------------- /config.mak.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/config.mak.in -------------------------------------------------------------------------------- /config.mak.uname: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/config.mak.uname -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/configure.ac -------------------------------------------------------------------------------- /connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/connect.c -------------------------------------------------------------------------------- /connect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/connect.h -------------------------------------------------------------------------------- /connected.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/connected.c -------------------------------------------------------------------------------- /connected.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/connected.h -------------------------------------------------------------------------------- /contrib/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/contrib/README -------------------------------------------------------------------------------- /contrib/coccinelle/.gitignore: -------------------------------------------------------------------------------- 1 | *.patch 2 | -------------------------------------------------------------------------------- /contrib/coccinelle/preincr.cocci: -------------------------------------------------------------------------------- 1 | @@ 2 | identifier i; 3 | @@ 4 | - ++i > 1 5 | + i++ 6 | -------------------------------------------------------------------------------- /contrib/completion/.gitattributes: -------------------------------------------------------------------------------- 1 | *.bash eol=lf 2 | -------------------------------------------------------------------------------- /contrib/credential/libsecret/.gitignore: -------------------------------------------------------------------------------- 1 | git-credential-libsecret 2 | -------------------------------------------------------------------------------- /contrib/credential/netrc/.gitignore: -------------------------------------------------------------------------------- 1 | git-credential-netrc 2 | -------------------------------------------------------------------------------- /contrib/credential/netrc/test.netrc.gpg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /contrib/credential/osxkeychain/.gitignore: -------------------------------------------------------------------------------- 1 | git-credential-osxkeychain 2 | -------------------------------------------------------------------------------- /contrib/diff-highlight/.gitignore: -------------------------------------------------------------------------------- 1 | shebang.perl 2 | diff-highlight 3 | -------------------------------------------------------------------------------- /contrib/diff-highlight/t/.gitignore: -------------------------------------------------------------------------------- 1 | /trash directory* 2 | /test-results 3 | -------------------------------------------------------------------------------- /contrib/libgit-rs/src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod config; 2 | -------------------------------------------------------------------------------- /contrib/libgit-rs/testdata/config1: -------------------------------------------------------------------------------- 1 | [trace2] 2 | eventNesting = 1 3 | -------------------------------------------------------------------------------- /contrib/libgit-rs/testdata/config2: -------------------------------------------------------------------------------- 1 | [trace2] 2 | eventTarget = 1 3 | -------------------------------------------------------------------------------- /contrib/libgit-rs/testdata/config3: -------------------------------------------------------------------------------- 1 | [trace2] 2 | eventNesting = 3 3 | -------------------------------------------------------------------------------- /contrib/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/contrib/meson.build -------------------------------------------------------------------------------- /contrib/vscode/.gitattributes: -------------------------------------------------------------------------------- 1 | init.sh whitespace=-indent-with-non-tab 2 | -------------------------------------------------------------------------------- /convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/convert.c -------------------------------------------------------------------------------- /convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/convert.h -------------------------------------------------------------------------------- /copy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/copy.c -------------------------------------------------------------------------------- /copy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/copy.h -------------------------------------------------------------------------------- /credential.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/credential.c -------------------------------------------------------------------------------- /credential.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/credential.h -------------------------------------------------------------------------------- /csum-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/csum-file.c -------------------------------------------------------------------------------- /csum-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/csum-file.h -------------------------------------------------------------------------------- /ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ctype.c -------------------------------------------------------------------------------- /daemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/daemon.c -------------------------------------------------------------------------------- /date.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/date.c -------------------------------------------------------------------------------- /date.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/date.h -------------------------------------------------------------------------------- /decorate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/decorate.c -------------------------------------------------------------------------------- /decorate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/decorate.h -------------------------------------------------------------------------------- /delta-islands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/delta-islands.c -------------------------------------------------------------------------------- /delta-islands.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/delta-islands.h -------------------------------------------------------------------------------- /delta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/delta.h -------------------------------------------------------------------------------- /detect-compiler: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/detect-compiler -------------------------------------------------------------------------------- /diagnose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diagnose.c -------------------------------------------------------------------------------- /diagnose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diagnose.h -------------------------------------------------------------------------------- /diff-delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff-delta.c -------------------------------------------------------------------------------- /diff-lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff-lib.c -------------------------------------------------------------------------------- /diff-merges.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff-merges.c -------------------------------------------------------------------------------- /diff-merges.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff-merges.h -------------------------------------------------------------------------------- /diff-no-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff-no-index.c -------------------------------------------------------------------------------- /diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff.c -------------------------------------------------------------------------------- /diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diff.h -------------------------------------------------------------------------------- /diffcore-break.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-break.c -------------------------------------------------------------------------------- /diffcore-delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-delta.c -------------------------------------------------------------------------------- /diffcore-order.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-order.c -------------------------------------------------------------------------------- /diffcore-pickaxe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-pickaxe.c -------------------------------------------------------------------------------- /diffcore-rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-rename.c -------------------------------------------------------------------------------- /diffcore-rotate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore-rotate.c -------------------------------------------------------------------------------- /diffcore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/diffcore.h -------------------------------------------------------------------------------- /dir-iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/dir-iterator.c -------------------------------------------------------------------------------- /dir-iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/dir-iterator.h -------------------------------------------------------------------------------- /dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/dir.c -------------------------------------------------------------------------------- /dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/dir.h -------------------------------------------------------------------------------- /editor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/editor.c -------------------------------------------------------------------------------- /editor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/editor.h -------------------------------------------------------------------------------- /entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/entry.c -------------------------------------------------------------------------------- /entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/entry.h -------------------------------------------------------------------------------- /environment.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/environment.c -------------------------------------------------------------------------------- /environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/environment.h -------------------------------------------------------------------------------- /ewah/bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/bitmap.c -------------------------------------------------------------------------------- /ewah/ewah_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/ewah_bitmap.c -------------------------------------------------------------------------------- /ewah/ewah_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/ewah_io.c -------------------------------------------------------------------------------- /ewah/ewah_rlw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/ewah_rlw.c -------------------------------------------------------------------------------- /ewah/ewok.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/ewok.h -------------------------------------------------------------------------------- /ewah/ewok_rlw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ewah/ewok_rlw.h -------------------------------------------------------------------------------- /exec-cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/exec-cmd.c -------------------------------------------------------------------------------- /exec-cmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/exec-cmd.h -------------------------------------------------------------------------------- /fetch-negotiator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fetch-negotiator.c -------------------------------------------------------------------------------- /fetch-negotiator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fetch-negotiator.h -------------------------------------------------------------------------------- /fetch-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fetch-pack.c -------------------------------------------------------------------------------- /fetch-pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fetch-pack.h -------------------------------------------------------------------------------- /fmt-merge-msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fmt-merge-msg.c -------------------------------------------------------------------------------- /fmt-merge-msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fmt-merge-msg.h -------------------------------------------------------------------------------- /for-each-ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/for-each-ref.h -------------------------------------------------------------------------------- /fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsck.c -------------------------------------------------------------------------------- /fsck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsck.h -------------------------------------------------------------------------------- /fsmonitor--daemon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor--daemon.h -------------------------------------------------------------------------------- /fsmonitor-ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor-ipc.c -------------------------------------------------------------------------------- /fsmonitor-ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor-ipc.h -------------------------------------------------------------------------------- /fsmonitor-ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor-ll.h -------------------------------------------------------------------------------- /fsmonitor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor.c -------------------------------------------------------------------------------- /fsmonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/fsmonitor.h -------------------------------------------------------------------------------- /generate-cmdlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/generate-cmdlist.sh -------------------------------------------------------------------------------- /generate-perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/generate-perl.sh -------------------------------------------------------------------------------- /generate-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/generate-python.sh -------------------------------------------------------------------------------- /generate-script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/generate-script.sh -------------------------------------------------------------------------------- /gettext.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gettext.c -------------------------------------------------------------------------------- /gettext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gettext.h -------------------------------------------------------------------------------- /git-archimport.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-archimport.perl -------------------------------------------------------------------------------- /git-compat-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-compat-util.h -------------------------------------------------------------------------------- /git-curl-compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-curl-compat.h -------------------------------------------------------------------------------- /git-cvsimport.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-cvsimport.perl -------------------------------------------------------------------------------- /git-cvsserver.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-cvsserver.perl -------------------------------------------------------------------------------- /git-gui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/.gitignore -------------------------------------------------------------------------------- /git-gui/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/Makefile -------------------------------------------------------------------------------- /git-gui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/README.md -------------------------------------------------------------------------------- /git-gui/git-gui.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/git-gui.sh -------------------------------------------------------------------------------- /git-gui/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/meson.build -------------------------------------------------------------------------------- /git-gui/po/.gitignore: -------------------------------------------------------------------------------- 1 | *.msg 2 | *~ 3 | /git-gui.pot 4 | -------------------------------------------------------------------------------- /git-gui/po/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/README -------------------------------------------------------------------------------- /git-gui/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/bg.po -------------------------------------------------------------------------------- /git-gui/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/de.po -------------------------------------------------------------------------------- /git-gui/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/el.po -------------------------------------------------------------------------------- /git-gui/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/fr.po -------------------------------------------------------------------------------- /git-gui/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/hu.po -------------------------------------------------------------------------------- /git-gui/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/it.po -------------------------------------------------------------------------------- /git-gui/po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/ja.po -------------------------------------------------------------------------------- /git-gui/po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/nb.po -------------------------------------------------------------------------------- /git-gui/po/pt_br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/pt_br.po -------------------------------------------------------------------------------- /git-gui/po/pt_pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/pt_pt.po -------------------------------------------------------------------------------- /git-gui/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/ru.po -------------------------------------------------------------------------------- /git-gui/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/sv.po -------------------------------------------------------------------------------- /git-gui/po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/vi.po -------------------------------------------------------------------------------- /git-gui/po/zh_cn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-gui/po/zh_cn.po -------------------------------------------------------------------------------- /git-instaweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-instaweb.sh -------------------------------------------------------------------------------- /git-mergetool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-mergetool.sh -------------------------------------------------------------------------------- /git-p4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-p4.py -------------------------------------------------------------------------------- /git-quiltimport.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-quiltimport.sh -------------------------------------------------------------------------------- /git-request-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-request-pull.sh -------------------------------------------------------------------------------- /git-send-email.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-send-email.perl -------------------------------------------------------------------------------- /git-sh-i18n.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-sh-i18n.sh -------------------------------------------------------------------------------- /git-sh-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-sh-setup.sh -------------------------------------------------------------------------------- /git-submodule.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-submodule.sh -------------------------------------------------------------------------------- /git-svn.perl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-svn.perl -------------------------------------------------------------------------------- /git-web--browse.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-web--browse.sh -------------------------------------------------------------------------------- /git-zlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-zlib.c -------------------------------------------------------------------------------- /git-zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git-zlib.h -------------------------------------------------------------------------------- /git.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git.c -------------------------------------------------------------------------------- /git.rc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/git.rc.in -------------------------------------------------------------------------------- /gitk-git/.gitignore: -------------------------------------------------------------------------------- 1 | /GIT-TCLTK-VARS 2 | /gitk-wish 3 | -------------------------------------------------------------------------------- /gitk-git/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/Makefile -------------------------------------------------------------------------------- /gitk-git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/README.md -------------------------------------------------------------------------------- /gitk-git/gitk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/gitk -------------------------------------------------------------------------------- /gitk-git/po/.gitignore: -------------------------------------------------------------------------------- 1 | *.msg 2 | -------------------------------------------------------------------------------- /gitk-git/po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/bg.po -------------------------------------------------------------------------------- /gitk-git/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/ca.po -------------------------------------------------------------------------------- /gitk-git/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/de.po -------------------------------------------------------------------------------- /gitk-git/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/es.po -------------------------------------------------------------------------------- /gitk-git/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/fr.po -------------------------------------------------------------------------------- /gitk-git/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitk-git/po/hu.po -------------------------------------------------------------------------------- /gitweb/INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitweb/INSTALL -------------------------------------------------------------------------------- /gitweb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitweb/Makefile -------------------------------------------------------------------------------- /gitweb/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gitweb/README -------------------------------------------------------------------------------- /gpg-interface.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gpg-interface.c -------------------------------------------------------------------------------- /gpg-interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/gpg-interface.h -------------------------------------------------------------------------------- /graph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/graph.c -------------------------------------------------------------------------------- /graph.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/graph.h -------------------------------------------------------------------------------- /grep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/grep.c -------------------------------------------------------------------------------- /grep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/grep.h -------------------------------------------------------------------------------- /hash-lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hash-lookup.c -------------------------------------------------------------------------------- /hash-lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hash-lookup.h -------------------------------------------------------------------------------- /hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hash.c -------------------------------------------------------------------------------- /hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hash.h -------------------------------------------------------------------------------- /hashmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hashmap.c -------------------------------------------------------------------------------- /hashmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hashmap.h -------------------------------------------------------------------------------- /help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/help.c -------------------------------------------------------------------------------- /help.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/help.h -------------------------------------------------------------------------------- /hex-ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hex-ll.c -------------------------------------------------------------------------------- /hex-ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hex-ll.h -------------------------------------------------------------------------------- /hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hex.c -------------------------------------------------------------------------------- /hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hex.h -------------------------------------------------------------------------------- /hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hook.c -------------------------------------------------------------------------------- /hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/hook.h -------------------------------------------------------------------------------- /http-backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http-backend.c -------------------------------------------------------------------------------- /http-fetch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http-fetch.c -------------------------------------------------------------------------------- /http-push.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http-push.c -------------------------------------------------------------------------------- /http-walker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http-walker.c -------------------------------------------------------------------------------- /http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http.c -------------------------------------------------------------------------------- /http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/http.h -------------------------------------------------------------------------------- /ident.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ident.c -------------------------------------------------------------------------------- /ident.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ident.h -------------------------------------------------------------------------------- /imap-send.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/imap-send.c -------------------------------------------------------------------------------- /iterator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/iterator.h -------------------------------------------------------------------------------- /json-writer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/json-writer.c -------------------------------------------------------------------------------- /json-writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/json-writer.h -------------------------------------------------------------------------------- /khash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/khash.h -------------------------------------------------------------------------------- /kwset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/kwset.c -------------------------------------------------------------------------------- /kwset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/kwset.h -------------------------------------------------------------------------------- /levenshtein.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/levenshtein.c -------------------------------------------------------------------------------- /levenshtein.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/levenshtein.h -------------------------------------------------------------------------------- /line-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/line-log.c -------------------------------------------------------------------------------- /line-log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/line-log.h -------------------------------------------------------------------------------- /line-range.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/line-range.c -------------------------------------------------------------------------------- /line-range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/line-range.h -------------------------------------------------------------------------------- /list-objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/list-objects.c -------------------------------------------------------------------------------- /list-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/list-objects.h -------------------------------------------------------------------------------- /list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/list.h -------------------------------------------------------------------------------- /lockfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/lockfile.c -------------------------------------------------------------------------------- /lockfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/lockfile.h -------------------------------------------------------------------------------- /log-tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/log-tree.c -------------------------------------------------------------------------------- /log-tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/log-tree.h -------------------------------------------------------------------------------- /loose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/loose.c -------------------------------------------------------------------------------- /loose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/loose.h -------------------------------------------------------------------------------- /ls-refs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ls-refs.c -------------------------------------------------------------------------------- /ls-refs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ls-refs.h -------------------------------------------------------------------------------- /mailinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mailinfo.c -------------------------------------------------------------------------------- /mailinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mailinfo.h -------------------------------------------------------------------------------- /mailmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mailmap.c -------------------------------------------------------------------------------- /mailmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mailmap.h -------------------------------------------------------------------------------- /match-trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/match-trees.c -------------------------------------------------------------------------------- /match-trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/match-trees.h -------------------------------------------------------------------------------- /mem-pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mem-pool.c -------------------------------------------------------------------------------- /mem-pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mem-pool.h -------------------------------------------------------------------------------- /merge-blobs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-blobs.c -------------------------------------------------------------------------------- /merge-blobs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-blobs.h -------------------------------------------------------------------------------- /merge-ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-ll.c -------------------------------------------------------------------------------- /merge-ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-ll.h -------------------------------------------------------------------------------- /merge-ort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-ort.c -------------------------------------------------------------------------------- /merge-ort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge-ort.h -------------------------------------------------------------------------------- /merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge.c -------------------------------------------------------------------------------- /merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/merge.h -------------------------------------------------------------------------------- /mergesort.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mergesort.h -------------------------------------------------------------------------------- /mergetools/bc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mergetools/bc -------------------------------------------------------------------------------- /mergetools/gvimdiff: -------------------------------------------------------------------------------- 1 | . "$MERGE_TOOLS_DIR/vimdiff" 2 | -------------------------------------------------------------------------------- /mergetools/meld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/mergetools/meld -------------------------------------------------------------------------------- /mergetools/nvimdiff: -------------------------------------------------------------------------------- 1 | . "$MERGE_TOOLS_DIR/vimdiff" 2 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/meson.build -------------------------------------------------------------------------------- /midx-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/midx-write.c -------------------------------------------------------------------------------- /midx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/midx.c -------------------------------------------------------------------------------- /midx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/midx.h -------------------------------------------------------------------------------- /name-hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/name-hash.c -------------------------------------------------------------------------------- /name-hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/name-hash.h -------------------------------------------------------------------------------- /notes-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-cache.c -------------------------------------------------------------------------------- /notes-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-cache.h -------------------------------------------------------------------------------- /notes-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-merge.c -------------------------------------------------------------------------------- /notes-merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-merge.h -------------------------------------------------------------------------------- /notes-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-utils.c -------------------------------------------------------------------------------- /notes-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes-utils.h -------------------------------------------------------------------------------- /notes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes.c -------------------------------------------------------------------------------- /notes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/notes.h -------------------------------------------------------------------------------- /object-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object-file.c -------------------------------------------------------------------------------- /object-file.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object-file.h -------------------------------------------------------------------------------- /object-name.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object-name.c -------------------------------------------------------------------------------- /object-name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object-name.h -------------------------------------------------------------------------------- /object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object.c -------------------------------------------------------------------------------- /object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/object.h -------------------------------------------------------------------------------- /odb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/odb.c -------------------------------------------------------------------------------- /odb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/odb.h -------------------------------------------------------------------------------- /oid-array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oid-array.c -------------------------------------------------------------------------------- /oid-array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oid-array.h -------------------------------------------------------------------------------- /oidmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidmap.c -------------------------------------------------------------------------------- /oidmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidmap.h -------------------------------------------------------------------------------- /oidset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidset.c -------------------------------------------------------------------------------- /oidset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidset.h -------------------------------------------------------------------------------- /oidtree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidtree.c -------------------------------------------------------------------------------- /oidtree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/oidtree.h -------------------------------------------------------------------------------- /pack-bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-bitmap.c -------------------------------------------------------------------------------- /pack-bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-bitmap.h -------------------------------------------------------------------------------- /pack-check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-check.c -------------------------------------------------------------------------------- /pack-mtimes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-mtimes.c -------------------------------------------------------------------------------- /pack-mtimes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-mtimes.h -------------------------------------------------------------------------------- /pack-objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-objects.c -------------------------------------------------------------------------------- /pack-objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-objects.h -------------------------------------------------------------------------------- /pack-refs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-refs.c -------------------------------------------------------------------------------- /pack-refs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-refs.h -------------------------------------------------------------------------------- /pack-revindex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-revindex.c -------------------------------------------------------------------------------- /pack-revindex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-revindex.h -------------------------------------------------------------------------------- /pack-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack-write.c -------------------------------------------------------------------------------- /pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pack.h -------------------------------------------------------------------------------- /packfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/packfile.c -------------------------------------------------------------------------------- /packfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/packfile.h -------------------------------------------------------------------------------- /pager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pager.c -------------------------------------------------------------------------------- /pager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pager.h -------------------------------------------------------------------------------- /parse-options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/parse-options.c -------------------------------------------------------------------------------- /parse-options.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/parse-options.h -------------------------------------------------------------------------------- /parse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/parse.c -------------------------------------------------------------------------------- /parse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/parse.h -------------------------------------------------------------------------------- /patch-delta.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/patch-delta.c -------------------------------------------------------------------------------- /patch-ids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/patch-ids.c -------------------------------------------------------------------------------- /patch-ids.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/patch-ids.h -------------------------------------------------------------------------------- /path-walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/path-walk.c -------------------------------------------------------------------------------- /path-walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/path-walk.h -------------------------------------------------------------------------------- /path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/path.c -------------------------------------------------------------------------------- /path.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/path.h -------------------------------------------------------------------------------- /pathspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pathspec.c -------------------------------------------------------------------------------- /pathspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pathspec.h -------------------------------------------------------------------------------- /perl/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /perl/FromCPAN/.gitattributes: -------------------------------------------------------------------------------- 1 | /Error.pm whitespace=-blank-at-eof 2 | -------------------------------------------------------------------------------- /perl/Git.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/perl/Git.pm -------------------------------------------------------------------------------- /perl/Git/I18N.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/perl/Git/I18N.pm -------------------------------------------------------------------------------- /perl/Git/SVN.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/perl/Git/SVN.pm -------------------------------------------------------------------------------- /perl/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/perl/meson.build -------------------------------------------------------------------------------- /pkt-line.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pkt-line.c -------------------------------------------------------------------------------- /pkt-line.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pkt-line.h -------------------------------------------------------------------------------- /po/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/.gitignore -------------------------------------------------------------------------------- /po/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/README.md -------------------------------------------------------------------------------- /po/TEAMS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/TEAMS -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/de.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/el.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/es.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/id.po -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/is.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/meson.build -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt_PT.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/pt_PT.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /preload-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/preload-index.c -------------------------------------------------------------------------------- /preload-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/preload-index.h -------------------------------------------------------------------------------- /pretty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pretty.c -------------------------------------------------------------------------------- /pretty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pretty.h -------------------------------------------------------------------------------- /prio-queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prio-queue.c -------------------------------------------------------------------------------- /prio-queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prio-queue.h -------------------------------------------------------------------------------- /progress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/progress.c -------------------------------------------------------------------------------- /progress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/progress.h -------------------------------------------------------------------------------- /prompt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prompt.c -------------------------------------------------------------------------------- /prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prompt.h -------------------------------------------------------------------------------- /protocol-caps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/protocol-caps.c -------------------------------------------------------------------------------- /protocol-caps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/protocol-caps.h -------------------------------------------------------------------------------- /protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/protocol.c -------------------------------------------------------------------------------- /protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/protocol.h -------------------------------------------------------------------------------- /prune-packed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prune-packed.c -------------------------------------------------------------------------------- /prune-packed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/prune-packed.h -------------------------------------------------------------------------------- /pseudo-merge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pseudo-merge.c -------------------------------------------------------------------------------- /pseudo-merge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/pseudo-merge.h -------------------------------------------------------------------------------- /quote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/quote.c -------------------------------------------------------------------------------- /quote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/quote.h -------------------------------------------------------------------------------- /range-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/range-diff.c -------------------------------------------------------------------------------- /range-diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/range-diff.h -------------------------------------------------------------------------------- /reachable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reachable.c -------------------------------------------------------------------------------- /reachable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reachable.h -------------------------------------------------------------------------------- /read-cache-ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/read-cache-ll.h -------------------------------------------------------------------------------- /read-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/read-cache.c -------------------------------------------------------------------------------- /read-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/read-cache.h -------------------------------------------------------------------------------- /rebase.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/rebase.c -------------------------------------------------------------------------------- /rebase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/rebase.h -------------------------------------------------------------------------------- /ref-filter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ref-filter.c -------------------------------------------------------------------------------- /ref-filter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ref-filter.h -------------------------------------------------------------------------------- /reflog-walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reflog-walk.c -------------------------------------------------------------------------------- /reflog-walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reflog-walk.h -------------------------------------------------------------------------------- /reflog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reflog.c -------------------------------------------------------------------------------- /reflog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reflog.h -------------------------------------------------------------------------------- /refs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs.c -------------------------------------------------------------------------------- /refs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs.h -------------------------------------------------------------------------------- /refs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs/debug.c -------------------------------------------------------------------------------- /refs/iterator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs/iterator.c -------------------------------------------------------------------------------- /refs/ref-cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs/ref-cache.c -------------------------------------------------------------------------------- /refs/ref-cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refs/ref-cache.h -------------------------------------------------------------------------------- /refspec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refspec.c -------------------------------------------------------------------------------- /refspec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/refspec.h -------------------------------------------------------------------------------- /reftable/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/LICENSE -------------------------------------------------------------------------------- /reftable/block.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/block.c -------------------------------------------------------------------------------- /reftable/block.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/block.h -------------------------------------------------------------------------------- /reftable/error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/error.c -------------------------------------------------------------------------------- /reftable/fsck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/fsck.c -------------------------------------------------------------------------------- /reftable/iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/iter.c -------------------------------------------------------------------------------- /reftable/iter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/iter.h -------------------------------------------------------------------------------- /reftable/pq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/pq.c -------------------------------------------------------------------------------- /reftable/pq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/pq.h -------------------------------------------------------------------------------- /reftable/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/stack.c -------------------------------------------------------------------------------- /reftable/stack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/stack.h -------------------------------------------------------------------------------- /reftable/table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/table.c -------------------------------------------------------------------------------- /reftable/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/table.h -------------------------------------------------------------------------------- /reftable/tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/tree.c -------------------------------------------------------------------------------- /reftable/tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reftable/tree.h -------------------------------------------------------------------------------- /remote-curl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/remote-curl.c -------------------------------------------------------------------------------- /remote.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/remote.c -------------------------------------------------------------------------------- /remote.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/remote.h -------------------------------------------------------------------------------- /repack-cruft.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repack-cruft.c -------------------------------------------------------------------------------- /repack-midx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repack-midx.c -------------------------------------------------------------------------------- /repack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repack.c -------------------------------------------------------------------------------- /repack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repack.h -------------------------------------------------------------------------------- /replace-object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/replace-object.c -------------------------------------------------------------------------------- /replace-object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/replace-object.h -------------------------------------------------------------------------------- /repo-settings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repo-settings.c -------------------------------------------------------------------------------- /repo-settings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repo-settings.h -------------------------------------------------------------------------------- /repository.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repository.c -------------------------------------------------------------------------------- /repository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/repository.h -------------------------------------------------------------------------------- /rerere.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/rerere.c -------------------------------------------------------------------------------- /rerere.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/rerere.h -------------------------------------------------------------------------------- /reset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reset.c -------------------------------------------------------------------------------- /reset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/reset.h -------------------------------------------------------------------------------- /resolve-undo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/resolve-undo.c -------------------------------------------------------------------------------- /resolve-undo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/resolve-undo.h -------------------------------------------------------------------------------- /revision.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/revision.c -------------------------------------------------------------------------------- /revision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/revision.h -------------------------------------------------------------------------------- /run-command.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/run-command.c -------------------------------------------------------------------------------- /run-command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/run-command.h -------------------------------------------------------------------------------- /sane-ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sane-ctype.h -------------------------------------------------------------------------------- /scalar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/scalar.c -------------------------------------------------------------------------------- /send-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/send-pack.c -------------------------------------------------------------------------------- /send-pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/send-pack.h -------------------------------------------------------------------------------- /sequencer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sequencer.c -------------------------------------------------------------------------------- /sequencer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sequencer.h -------------------------------------------------------------------------------- /serve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/serve.c -------------------------------------------------------------------------------- /serve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/serve.h -------------------------------------------------------------------------------- /server-info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/server-info.c -------------------------------------------------------------------------------- /server-info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/server-info.h -------------------------------------------------------------------------------- /setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/setup.c -------------------------------------------------------------------------------- /setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/setup.h -------------------------------------------------------------------------------- /sha1/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha1/openssl.h -------------------------------------------------------------------------------- /sha1dc/.gitattributes: -------------------------------------------------------------------------------- 1 | * whitespace=-indent-with-non-tab 2 | -------------------------------------------------------------------------------- /sha1dc/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha1dc/sha1.c -------------------------------------------------------------------------------- /sha1dc/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha1dc/sha1.h -------------------------------------------------------------------------------- /sha1dc_git.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha1dc_git.c -------------------------------------------------------------------------------- /sha1dc_git.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha1dc_git.h -------------------------------------------------------------------------------- /sha256/gcrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha256/gcrypt.h -------------------------------------------------------------------------------- /sha256/nettle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha256/nettle.h -------------------------------------------------------------------------------- /sha256/openssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sha256/openssl.h -------------------------------------------------------------------------------- /shallow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/shallow.c -------------------------------------------------------------------------------- /shallow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/shallow.h -------------------------------------------------------------------------------- /shared.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/shared.mak -------------------------------------------------------------------------------- /shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/shell.c -------------------------------------------------------------------------------- /shortlog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/shortlog.h -------------------------------------------------------------------------------- /sideband.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sideband.c -------------------------------------------------------------------------------- /sideband.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sideband.h -------------------------------------------------------------------------------- /sigchain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sigchain.c -------------------------------------------------------------------------------- /sigchain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sigchain.h -------------------------------------------------------------------------------- /simple-ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/simple-ipc.h -------------------------------------------------------------------------------- /sparse-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sparse-index.c -------------------------------------------------------------------------------- /sparse-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sparse-index.h -------------------------------------------------------------------------------- /split-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/split-index.c -------------------------------------------------------------------------------- /split-index.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/split-index.h -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- 1 | pub mod varint; 2 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/varint.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/src/varint.rs -------------------------------------------------------------------------------- /stable-qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/stable-qsort.c -------------------------------------------------------------------------------- /statinfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/statinfo.c -------------------------------------------------------------------------------- /statinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/statinfo.h -------------------------------------------------------------------------------- /strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strbuf.c -------------------------------------------------------------------------------- /strbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strbuf.h -------------------------------------------------------------------------------- /streaming.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/streaming.c -------------------------------------------------------------------------------- /streaming.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/streaming.h -------------------------------------------------------------------------------- /string-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/string-list.c -------------------------------------------------------------------------------- /string-list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/string-list.h -------------------------------------------------------------------------------- /strmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strmap.c -------------------------------------------------------------------------------- /strmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strmap.h -------------------------------------------------------------------------------- /strvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strvec.c -------------------------------------------------------------------------------- /strvec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/strvec.h -------------------------------------------------------------------------------- /sub-process.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sub-process.c -------------------------------------------------------------------------------- /sub-process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/sub-process.h -------------------------------------------------------------------------------- /submodule.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/submodule.c -------------------------------------------------------------------------------- /submodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/submodule.h -------------------------------------------------------------------------------- /subprojects/.gitignore: -------------------------------------------------------------------------------- 1 | /*/ 2 | -------------------------------------------------------------------------------- /symlinks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/symlinks.c -------------------------------------------------------------------------------- /symlinks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/symlinks.h -------------------------------------------------------------------------------- /t/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/.gitattributes -------------------------------------------------------------------------------- /t/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/.gitignore -------------------------------------------------------------------------------- /t/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/Makefile -------------------------------------------------------------------------------- /t/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/README -------------------------------------------------------------------------------- /t/chainlint.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/chainlint.pl -------------------------------------------------------------------------------- /t/interop/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/interop/README -------------------------------------------------------------------------------- /t/lib-bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-bash.sh -------------------------------------------------------------------------------- /t/lib-bitmap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-bitmap.sh -------------------------------------------------------------------------------- /t/lib-bundle.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-bundle.sh -------------------------------------------------------------------------------- /t/lib-chunk.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-chunk.sh -------------------------------------------------------------------------------- /t/lib-cvs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-cvs.sh -------------------------------------------------------------------------------- /t/lib-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-diff.sh -------------------------------------------------------------------------------- /t/lib-gettext.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-gettext.sh -------------------------------------------------------------------------------- /t/lib-git-p4.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-git-p4.sh -------------------------------------------------------------------------------- /t/lib-git-svn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-git-svn.sh -------------------------------------------------------------------------------- /t/lib-gitweb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-gitweb.sh -------------------------------------------------------------------------------- /t/lib-gpg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-gpg.sh -------------------------------------------------------------------------------- /t/lib-httpd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-httpd.sh -------------------------------------------------------------------------------- /t/lib-httpd/passwd: -------------------------------------------------------------------------------- 1 | user@host:$apr1$LGPmCZWj$9vxEwj5Z5GzQLBMxp3mCx1 2 | -------------------------------------------------------------------------------- /t/lib-httpd/proxy-passwd: -------------------------------------------------------------------------------- 1 | proxuser:$apr1$RxS6MLkD$DYsqQdflheq4GPNxzJpx5. 2 | -------------------------------------------------------------------------------- /t/lib-loose.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-loose.sh -------------------------------------------------------------------------------- /t/lib-midx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-midx.sh -------------------------------------------------------------------------------- /t/lib-pack.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-pack.sh -------------------------------------------------------------------------------- /t/lib-pager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-pager.sh -------------------------------------------------------------------------------- /t/lib-perl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-perl.sh -------------------------------------------------------------------------------- /t/lib-rebase.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-rebase.sh -------------------------------------------------------------------------------- /t/lib-subtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-subtest.sh -------------------------------------------------------------------------------- /t/lib-sudo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-sudo.sh -------------------------------------------------------------------------------- /t/lib-t3100.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-t3100.sh -------------------------------------------------------------------------------- /t/lib-t6000.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/lib-t6000.sh -------------------------------------------------------------------------------- /t/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/meson.build -------------------------------------------------------------------------------- /t/oid-info/oid: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/oid-info/oid -------------------------------------------------------------------------------- /t/perf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/perf/Makefile -------------------------------------------------------------------------------- /t/perf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/perf/README -------------------------------------------------------------------------------- /t/perf/config: -------------------------------------------------------------------------------- 1 | [gc] 2 | auto = 0 3 | -------------------------------------------------------------------------------- /t/perf/repos/.gitignore: -------------------------------------------------------------------------------- 1 | gen-*/ 2 | -------------------------------------------------------------------------------- /t/perf/run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/perf/run -------------------------------------------------------------------------------- /t/run-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/run-test.sh -------------------------------------------------------------------------------- /t/t0000-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0000-basic.sh -------------------------------------------------------------------------------- /t/t0001-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0001-init.sh -------------------------------------------------------------------------------- /t/t0006-date.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0006-date.sh -------------------------------------------------------------------------------- /t/t0012-help.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0012-help.sh -------------------------------------------------------------------------------- /t/t0014-alias.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0014-alias.sh -------------------------------------------------------------------------------- /t/t0020-crlf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0020-crlf.sh -------------------------------------------------------------------------------- /t/t0041-usage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0041-usage.sh -------------------------------------------------------------------------------- /t/t0056-git-C.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0056-git-C.sh -------------------------------------------------------------------------------- /t/t0071-sort.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0071-sort.sh -------------------------------------------------------------------------------- /t/t0095-bloom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0095-bloom.sh -------------------------------------------------------------------------------- /t/t0200/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0200/test.c -------------------------------------------------------------------------------- /t/t0200/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0200/test.sh -------------------------------------------------------------------------------- /t/t0202/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t0202/test.pl -------------------------------------------------------------------------------- /t/t1016/gpg: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | exec gpg --faked-system-time '20230918T154812!' "$@" 3 | -------------------------------------------------------------------------------- /t/t1050-large.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1050-large.sh -------------------------------------------------------------------------------- /t/t1450-fsck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1450-fsck.sh -------------------------------------------------------------------------------- /t/t1502/.gitattributes: -------------------------------------------------------------------------------- 1 | * -whitespace 2 | -------------------------------------------------------------------------------- /t/t1509/excludes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1509/excludes -------------------------------------------------------------------------------- /t/t1600-index.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1600-index.sh -------------------------------------------------------------------------------- /t/t1800-hook.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1800-hook.sh -------------------------------------------------------------------------------- /t/t1900-repo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t1900-repo.sh -------------------------------------------------------------------------------- /t/t3301-notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3301-notes.sh -------------------------------------------------------------------------------- /t/t3600-rm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3600-rm.sh -------------------------------------------------------------------------------- /t/t3700-add.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3700-add.sh -------------------------------------------------------------------------------- /t/t3800-mktag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3800-mktag.sh -------------------------------------------------------------------------------- /t/t3900/1-UTF-8.txt: -------------------------------------------------------------------------------- 1 | ÄËÑÏÖ 2 | 3 | Ábçdèfg 4 | -------------------------------------------------------------------------------- /t/t3901/utf8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3901/utf8.txt -------------------------------------------------------------------------------- /t/t3903-stash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t3903-stash.sh -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_--pretty_-p_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree --pretty -p initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_--pretty_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree --pretty initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_-p_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree -p initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_-p_main: -------------------------------------------------------------------------------- 1 | $ git diff-tree -p main 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_-r_--abbrev_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree -r --abbrev initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_-r_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree -r initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_initial: -------------------------------------------------------------------------------- 1 | $ git diff-tree initial 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.diff-tree_main: -------------------------------------------------------------------------------- 1 | $ git diff-tree main 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4013/diff.log_-SF_main_--max-count=0: -------------------------------------------------------------------------------- 1 | $ git log -SF main --max-count=0 2 | $ 3 | -------------------------------------------------------------------------------- /t/t4018/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4018/README -------------------------------------------------------------------------------- /t/t4018/bash-mixed-style-function: -------------------------------------------------------------------------------- 1 | function RIGHT() { 2 | 3 | ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/bash-other-characters: -------------------------------------------------------------------------------- 1 | _RIGHT_0n() { 2 | 3 | ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/bash-posix-style-compact: -------------------------------------------------------------------------------- 1 | RIGHT(){ 2 | 3 | ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/bash-posix-style-function: -------------------------------------------------------------------------------- 1 | RIGHT() { 2 | 3 | ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/bash-subshell-function: -------------------------------------------------------------------------------- 1 | RIGHT() ( 2 | 3 | ChangeMe=2 4 | ) 5 | -------------------------------------------------------------------------------- /t/t4018/bash-trailing-comment: -------------------------------------------------------------------------------- 1 | RIGHT() { # Comment 2 | 3 | ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/cpp-class-constructor: -------------------------------------------------------------------------------- 1 | Item::Item(int RIGHT) 2 | { 3 | ChangeMe; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/cpp-class-definition: -------------------------------------------------------------------------------- 1 | class RIGHT 2 | { 3 | int ChangeMe; 4 | }; 5 | -------------------------------------------------------------------------------- /t/t4018/cpp-namespace-definition: -------------------------------------------------------------------------------- 1 | namespace RIGHT 2 | { 3 | ChangeMe; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/cpp-union-definition: -------------------------------------------------------------------------------- 1 | union RIGHT { 2 | double v; 3 | int ChangeMe; 4 | }; 5 | -------------------------------------------------------------------------------- /t/t4018/cpp-void-c-function: -------------------------------------------------------------------------------- 1 | void RIGHT (void) 2 | { 3 | ChangeMe; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/css-colon-eol: -------------------------------------------------------------------------------- 1 | RIGHT h1 { 2 | color: 3 | ChangeMe; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/dts-root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4018/dts-root -------------------------------------------------------------------------------- /t/t4018/golang-struct: -------------------------------------------------------------------------------- 1 | type RIGHT struct { 2 | a Type 3 | b ChangeMe 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/perl-sub-definition-kr-brace: -------------------------------------------------------------------------------- 1 | sub RIGHT 2 | { 3 | print "ChangeMe\n"; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/php-class: -------------------------------------------------------------------------------- 1 | class RIGHT 2 | { 3 | const FOO = 'ChangeMe'; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/php-enum: -------------------------------------------------------------------------------- 1 | enum RIGHT: string 2 | { 3 | case Foo = 'ChangeMe'; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/php-function: -------------------------------------------------------------------------------- 1 | function RIGHT() 2 | { 3 | return 'ChangeMe'; 4 | } 5 | -------------------------------------------------------------------------------- /t/t4018/r-indent: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4018/r-indent -------------------------------------------------------------------------------- /t/t4018/rust-fn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4018/rust-fn -------------------------------------------------------------------------------- /t/t4020/diff.NUL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4020/diff.NUL -------------------------------------------------------------------------------- /t/t4026-color.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4026-color.sh -------------------------------------------------------------------------------- /t/t4034/ada/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/ada/post -------------------------------------------------------------------------------- /t/t4034/ada/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/ada/pre -------------------------------------------------------------------------------- /t/t4034/bash/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/bash/pre -------------------------------------------------------------------------------- /t/t4034/cpp/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/cpp/post -------------------------------------------------------------------------------- /t/t4034/cpp/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/cpp/pre -------------------------------------------------------------------------------- /t/t4034/css/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/css/post -------------------------------------------------------------------------------- /t/t4034/css/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/css/pre -------------------------------------------------------------------------------- /t/t4034/dts/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/dts/post -------------------------------------------------------------------------------- /t/t4034/dts/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/dts/pre -------------------------------------------------------------------------------- /t/t4034/html/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/html/pre -------------------------------------------------------------------------------- /t/t4034/java/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/java/pre -------------------------------------------------------------------------------- /t/t4034/objc/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/objc/pre -------------------------------------------------------------------------------- /t/t4034/perl/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/perl/pre -------------------------------------------------------------------------------- /t/t4034/php/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/php/post -------------------------------------------------------------------------------- /t/t4034/php/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/php/pre -------------------------------------------------------------------------------- /t/t4034/ruby/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/ruby/pre -------------------------------------------------------------------------------- /t/t4034/tex/post: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/tex/post -------------------------------------------------------------------------------- /t/t4034/tex/pre: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4034/tex/pre -------------------------------------------------------------------------------- /t/t4051/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4051/dummy.c -------------------------------------------------------------------------------- /t/t4051/hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4051/hello.c -------------------------------------------------------------------------------- /t/t4101/diff.0-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.0-1 -------------------------------------------------------------------------------- /t/t4101/diff.0-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.0-2 -------------------------------------------------------------------------------- /t/t4101/diff.0-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.0-3 -------------------------------------------------------------------------------- /t/t4101/diff.1-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.1-0 -------------------------------------------------------------------------------- /t/t4101/diff.1-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.1-2 -------------------------------------------------------------------------------- /t/t4101/diff.1-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.1-3 -------------------------------------------------------------------------------- /t/t4101/diff.2-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.2-0 -------------------------------------------------------------------------------- /t/t4101/diff.2-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.2-1 -------------------------------------------------------------------------------- /t/t4101/diff.2-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.2-3 -------------------------------------------------------------------------------- /t/t4101/diff.3-0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.3-0 -------------------------------------------------------------------------------- /t/t4101/diff.3-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.3-1 -------------------------------------------------------------------------------- /t/t4101/diff.3-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4101/diff.3-2 -------------------------------------------------------------------------------- /t/t4109/expect-1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4109/expect-1 -------------------------------------------------------------------------------- /t/t4109/expect-2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4109/expect-2 -------------------------------------------------------------------------------- /t/t4109/expect-3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4109/expect-3 -------------------------------------------------------------------------------- /t/t4110/expect: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4110/expect -------------------------------------------------------------------------------- /t/t4150-am.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4150-am.sh -------------------------------------------------------------------------------- /t/t4202-log.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4202-log.sh -------------------------------------------------------------------------------- /t/t4252/file-1-0: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | -------------------------------------------------------------------------------- /t/t4252/file-2-0: -------------------------------------------------------------------------------- 1 | 1 2 | 2 3 | 3 4 | 4 5 | 5 6 | 6 7 | 7 8 | -------------------------------------------------------------------------------- /t/t4256/1/patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4256/1/patch -------------------------------------------------------------------------------- /t/t4258/mbox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t4258/mbox -------------------------------------------------------------------------------- /t/t5000/pax.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5000/pax.tar -------------------------------------------------------------------------------- /t/t5100/empty: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/info0001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0001 -------------------------------------------------------------------------------- /t/t5100/info0002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0002 -------------------------------------------------------------------------------- /t/t5100/info0003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0003 -------------------------------------------------------------------------------- /t/t5100/info0004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0004 -------------------------------------------------------------------------------- /t/t5100/info0005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0005 -------------------------------------------------------------------------------- /t/t5100/info0006: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0006 -------------------------------------------------------------------------------- /t/t5100/info0007: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0007 -------------------------------------------------------------------------------- /t/t5100/info0008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0008 -------------------------------------------------------------------------------- /t/t5100/info0009: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0009 -------------------------------------------------------------------------------- /t/t5100/info0010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0010 -------------------------------------------------------------------------------- /t/t5100/info0011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0011 -------------------------------------------------------------------------------- /t/t5100/info0012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0012 -------------------------------------------------------------------------------- /t/t5100/info0013: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0013 -------------------------------------------------------------------------------- /t/t5100/info0015: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0015 -------------------------------------------------------------------------------- /t/t5100/info0016: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0016 -------------------------------------------------------------------------------- /t/t5100/info0017: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0017 -------------------------------------------------------------------------------- /t/t5100/info0018: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/info0018 -------------------------------------------------------------------------------- /t/t5100/msg0001: -------------------------------------------------------------------------------- 1 | Here is a patch from A U Thor. 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0002: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0002 -------------------------------------------------------------------------------- /t/t5100/msg0003: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0003 -------------------------------------------------------------------------------- /t/t5100/msg0004: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0004 -------------------------------------------------------------------------------- /t/t5100/msg0005: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0005 -------------------------------------------------------------------------------- /t/t5100/msg0006: -------------------------------------------------------------------------------- 1 | Here is a patch from A U Thor. 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0007: -------------------------------------------------------------------------------- 1 | Here is an empty patch from A U Thor. 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0008: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0008 -------------------------------------------------------------------------------- /t/t5100/msg0009: -------------------------------------------------------------------------------- 1 | This is to fix diff-format documentation. 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0010: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0010 -------------------------------------------------------------------------------- /t/t5100/msg0011: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0011 -------------------------------------------------------------------------------- /t/t5100/msg0012: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0012 -------------------------------------------------------------------------------- /t/t5100/msg0013: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/msg0014: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5100/msg0014 -------------------------------------------------------------------------------- /t/t5100/msg0015: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/msg0016: -------------------------------------------------------------------------------- 1 | and some content 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0016--no-inbody-headers: -------------------------------------------------------------------------------- 1 | Date: bogus 2 | 3 | and some content 4 | 5 | -------------------------------------------------------------------------------- /t/t5100/msg0017: -------------------------------------------------------------------------------- 1 | New content here 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/msg0018: -------------------------------------------------------------------------------- 1 | a commit message 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/patch0007: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/patch0008: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/patch0013: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0005: -------------------------------------------------------------------------------- 1 | Subject: (a) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0006: -------------------------------------------------------------------------------- 1 | Subject: (a b) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0007: -------------------------------------------------------------------------------- 1 | Subject: (ab) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0008: -------------------------------------------------------------------------------- 1 | Subject: (ab) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0009: -------------------------------------------------------------------------------- 1 | Subject: (ab) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0010: -------------------------------------------------------------------------------- 1 | Subject: (a b) 2 | 3 | -------------------------------------------------------------------------------- /t/t5100/rfc2047-info-0011: -------------------------------------------------------------------------------- 1 | Subject: (a b) 2 | 3 | -------------------------------------------------------------------------------- /t/t5304-prune.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5304-prune.sh -------------------------------------------------------------------------------- /t/t5510-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5510-fetch.sh -------------------------------------------------------------------------------- /t/t5520-pull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5520-pull.sh -------------------------------------------------------------------------------- /t/t556x_common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t556x_common -------------------------------------------------------------------------------- /t/t5601-clone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t5601-clone.sh -------------------------------------------------------------------------------- /t/t6500-gc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t6500-gc.sh -------------------------------------------------------------------------------- /t/t7001-mv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7001-mv.sh -------------------------------------------------------------------------------- /t/t7004-tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7004-tag.sh -------------------------------------------------------------------------------- /t/t7006-pager.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7006-pager.sh -------------------------------------------------------------------------------- /t/t7007-show.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7007-show.sh -------------------------------------------------------------------------------- /t/t7010-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7010-setup.sh -------------------------------------------------------------------------------- /t/t7102-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7102-reset.sh -------------------------------------------------------------------------------- /t/t7201-co.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7201-co.sh -------------------------------------------------------------------------------- /t/t7300-clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7300-clean.sh -------------------------------------------------------------------------------- /t/t7500/add-content: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "commit message" >> "$1" 3 | exit 0 4 | -------------------------------------------------------------------------------- /t/t7600-merge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7600-merge.sh -------------------------------------------------------------------------------- /t/t7615/base.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7615/base.c -------------------------------------------------------------------------------- /t/t7615/ours.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7615/ours.c -------------------------------------------------------------------------------- /t/t7615/theirs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7615/theirs.c -------------------------------------------------------------------------------- /t/t7810-grep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t7810-grep.sh -------------------------------------------------------------------------------- /t/t8002-blame.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t8002-blame.sh -------------------------------------------------------------------------------- /t/t8005/sjis.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t8005/sjis.txt -------------------------------------------------------------------------------- /t/t8005/utf8.txt: -------------------------------------------------------------------------------- 1 | UTF8_NAME="山田 太郎" 2 | UTF8_MSG="ブレームのテストです。" 3 | -------------------------------------------------------------------------------- /t/t9110/svm.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9110/svm.dump -------------------------------------------------------------------------------- /t/t9135/svn.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9135/svn.dump -------------------------------------------------------------------------------- /t/t9136/svn.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9136/svn.dump -------------------------------------------------------------------------------- /t/t9151/.gitignore: -------------------------------------------------------------------------------- 1 | foo 2 | foo.svn 3 | -------------------------------------------------------------------------------- /t/t9153/svn.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9153/svn.dump -------------------------------------------------------------------------------- /t/t9154/svn.dump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9154/svn.dump -------------------------------------------------------------------------------- /t/t9601/cvsroot/.gitattributes: -------------------------------------------------------------------------------- 1 | * -whitespace 2 | -------------------------------------------------------------------------------- /t/t9601/cvsroot/CVSROOT/.gitignore: -------------------------------------------------------------------------------- 1 | history 2 | val-tags 3 | -------------------------------------------------------------------------------- /t/t9602/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9602/README -------------------------------------------------------------------------------- /t/t9602/cvsroot/.gitattributes: -------------------------------------------------------------------------------- 1 | * -whitespace 2 | -------------------------------------------------------------------------------- /t/t9602/cvsroot/CVSROOT/.gitignore: -------------------------------------------------------------------------------- 1 | history 2 | val-tags 3 | -------------------------------------------------------------------------------- /t/t9603/cvsroot/.gitattributes: -------------------------------------------------------------------------------- 1 | * -whitespace 2 | -------------------------------------------------------------------------------- /t/t9603/cvsroot/CVSROOT/.gitignore: -------------------------------------------------------------------------------- 1 | history 2 | val-tags 3 | -------------------------------------------------------------------------------- /t/t9604/cvsroot/.gitattributes: -------------------------------------------------------------------------------- 1 | * -whitespace 2 | -------------------------------------------------------------------------------- /t/t9604/cvsroot/CVSROOT/.gitignore: -------------------------------------------------------------------------------- 1 | history 2 | val-tags 3 | -------------------------------------------------------------------------------- /t/t9700/test.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9700/test.pl -------------------------------------------------------------------------------- /t/t9850-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/t9850-shell.sh -------------------------------------------------------------------------------- /t/test-lib.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/t/test-lib.sh -------------------------------------------------------------------------------- /t/unit-tests/clar/.gitignore: -------------------------------------------------------------------------------- 1 | /build/ 2 | -------------------------------------------------------------------------------- /t/unit-tests/clar/test/suites/resources/test/file: -------------------------------------------------------------------------------- 1 | File 2 | -------------------------------------------------------------------------------- /t/valgrind/.gitignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /templates 3 | -------------------------------------------------------------------------------- /tag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tag.c -------------------------------------------------------------------------------- /tag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tag.h -------------------------------------------------------------------------------- /tar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tar.h -------------------------------------------------------------------------------- /tempfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tempfile.c -------------------------------------------------------------------------------- /tempfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tempfile.h -------------------------------------------------------------------------------- /templates/.gitignore: -------------------------------------------------------------------------------- 1 | blt 2 | boilerplates.made 3 | -------------------------------------------------------------------------------- /thread-utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/thread-utils.c -------------------------------------------------------------------------------- /thread-utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/thread-utils.h -------------------------------------------------------------------------------- /tmp-objdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tmp-objdir.c -------------------------------------------------------------------------------- /tmp-objdir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tmp-objdir.h -------------------------------------------------------------------------------- /trace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace.c -------------------------------------------------------------------------------- /trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace.h -------------------------------------------------------------------------------- /trace2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2.c -------------------------------------------------------------------------------- /trace2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2.h -------------------------------------------------------------------------------- /trace2/tr2_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_cfg.c -------------------------------------------------------------------------------- /trace2/tr2_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_cfg.h -------------------------------------------------------------------------------- /trace2/tr2_ctr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_ctr.c -------------------------------------------------------------------------------- /trace2/tr2_ctr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_ctr.h -------------------------------------------------------------------------------- /trace2/tr2_dst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_dst.c -------------------------------------------------------------------------------- /trace2/tr2_dst.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_dst.h -------------------------------------------------------------------------------- /trace2/tr2_sid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_sid.c -------------------------------------------------------------------------------- /trace2/tr2_sid.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_sid.h -------------------------------------------------------------------------------- /trace2/tr2_tgt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_tgt.h -------------------------------------------------------------------------------- /trace2/tr2_tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_tls.c -------------------------------------------------------------------------------- /trace2/tr2_tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_tls.h -------------------------------------------------------------------------------- /trace2/tr2_tmr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_tmr.c -------------------------------------------------------------------------------- /trace2/tr2_tmr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trace2/tr2_tmr.h -------------------------------------------------------------------------------- /trailer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trailer.c -------------------------------------------------------------------------------- /trailer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/trailer.h -------------------------------------------------------------------------------- /transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/transport.c -------------------------------------------------------------------------------- /transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/transport.h -------------------------------------------------------------------------------- /tree-diff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tree-diff.c -------------------------------------------------------------------------------- /tree-walk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tree-walk.c -------------------------------------------------------------------------------- /tree-walk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tree-walk.h -------------------------------------------------------------------------------- /tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tree.c -------------------------------------------------------------------------------- /tree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/tree.h -------------------------------------------------------------------------------- /unicode-width.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unicode-width.h -------------------------------------------------------------------------------- /unimplemented.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unimplemented.sh -------------------------------------------------------------------------------- /unix-socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unix-socket.c -------------------------------------------------------------------------------- /unix-socket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unix-socket.h -------------------------------------------------------------------------------- /unpack-trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unpack-trees.c -------------------------------------------------------------------------------- /unpack-trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/unpack-trees.h -------------------------------------------------------------------------------- /upload-pack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/upload-pack.c -------------------------------------------------------------------------------- /upload-pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/upload-pack.h -------------------------------------------------------------------------------- /url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/url.c -------------------------------------------------------------------------------- /url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/url.h -------------------------------------------------------------------------------- /urlmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/urlmatch.c -------------------------------------------------------------------------------- /urlmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/urlmatch.h -------------------------------------------------------------------------------- /usage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/usage.c -------------------------------------------------------------------------------- /userdiff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/userdiff.c -------------------------------------------------------------------------------- /userdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/userdiff.h -------------------------------------------------------------------------------- /utf8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/utf8.c -------------------------------------------------------------------------------- /utf8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/utf8.h -------------------------------------------------------------------------------- /varint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/varint.c -------------------------------------------------------------------------------- /varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/varint.h -------------------------------------------------------------------------------- /version-def.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/version-def.h.in -------------------------------------------------------------------------------- /version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/version.c -------------------------------------------------------------------------------- /version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/version.h -------------------------------------------------------------------------------- /versioncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/versioncmp.c -------------------------------------------------------------------------------- /versioncmp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/versioncmp.h -------------------------------------------------------------------------------- /walker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/walker.c -------------------------------------------------------------------------------- /walker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/walker.h -------------------------------------------------------------------------------- /wildmatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wildmatch.c -------------------------------------------------------------------------------- /wildmatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wildmatch.h -------------------------------------------------------------------------------- /worktree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/worktree.c -------------------------------------------------------------------------------- /worktree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/worktree.h -------------------------------------------------------------------------------- /wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wrapper.c -------------------------------------------------------------------------------- /wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wrapper.h -------------------------------------------------------------------------------- /write-or-die.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/write-or-die.c -------------------------------------------------------------------------------- /write-or-die.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/write-or-die.h -------------------------------------------------------------------------------- /ws.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ws.c -------------------------------------------------------------------------------- /ws.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/ws.h -------------------------------------------------------------------------------- /wt-status.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wt-status.c -------------------------------------------------------------------------------- /wt-status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/wt-status.h -------------------------------------------------------------------------------- /xdiff/xdiff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xdiff.h -------------------------------------------------------------------------------- /xdiff/xdiffi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xdiffi.c -------------------------------------------------------------------------------- /xdiff/xdiffi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xdiffi.h -------------------------------------------------------------------------------- /xdiff/xemit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xemit.c -------------------------------------------------------------------------------- /xdiff/xemit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xemit.h -------------------------------------------------------------------------------- /xdiff/xinclude.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xinclude.h -------------------------------------------------------------------------------- /xdiff/xmacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xmacros.h -------------------------------------------------------------------------------- /xdiff/xmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xmerge.c -------------------------------------------------------------------------------- /xdiff/xprepare.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xprepare.c -------------------------------------------------------------------------------- /xdiff/xprepare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xprepare.h -------------------------------------------------------------------------------- /xdiff/xtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xtypes.h -------------------------------------------------------------------------------- /xdiff/xutils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xutils.c -------------------------------------------------------------------------------- /xdiff/xutils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/git-for-windows/git/HEAD/xdiff/xutils.h --------------------------------------------------------------------------------