gitextract_xoqawrl5/ ├── .editorconfig ├── .git-blame-ignore-revs ├── .gitattributes ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── powershell.yml │ └── pwsh.yml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ ├── launch.json │ ├── settings.json │ └── tasks.json ├── CHANGELOG.md ├── ISSUE_TEMPLATE.md ├── LICENSE.txt ├── PSScriptAnalyzerSettings.psd1 ├── README.md ├── chocolatey/ │ ├── packAndLocalInstall.ps1 │ ├── poshgit.nuspec │ ├── tests/ │ │ └── InstallChocolatey.Tests.ps1 │ └── tools/ │ ├── chocolateyInstall.ps1 │ └── chocolateyUninstall.ps1 ├── install.ps1 ├── profile.example.ps1 ├── src/ │ ├── AnsiUtils.ps1 │ ├── CheckRequirements.ps1 │ ├── ConsoleMode.ps1 │ ├── GitParamTabExpansion.ps1 │ ├── GitPrompt.ps1 │ ├── GitTabExpansion.ps1 │ ├── GitUtils.ps1 │ ├── PoshGitTypes.ps1 │ ├── TortoiseGit.ps1 │ ├── Utils.ps1 │ ├── WindowTitle.ps1 │ ├── en-US/ │ │ └── about_posh-git.help.txt │ ├── posh-git.psd1 │ └── posh-git.psm1 └── test/ ├── Ansi.Tests.ps1 ├── CheckRequirements.Tests.ps1 ├── DefaultPrompt.Tests.ps1 ├── Get-GitBranch.Tests.ps1 ├── Get-GitDirectory.Tests.ps1 ├── Get-GitStatus.Tests.ps1 ├── GitParamTabExpansion.Tests.ps1 ├── GitParamTabExpansionVsts.Tests.ps1 ├── GitPrompt.Tests.ps1 ├── GitProxyFunctionExpansion.Tests.ps1 ├── ModuleManifest.Tests.ps1 ├── Shared.ps1 ├── TabExpansion.Tests.ps1 ├── Utils.Tests.ps1 └── git-help.txt