├── .github ├── actions │ └── latest-git │ │ └── action.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .vscode ├── launch.json └── settings.json ├── 3rd-party-license.txt ├── CHANGELOG.md ├── LICENSE ├── README.md ├── src ├── Common │ ├── CommandLineContext.ps1 │ ├── GitCommands.ps1 │ ├── GitCommandsIndexedFiles.ps1 │ ├── GitCompletionSettings.ps1 │ ├── GitDescription.ps1 │ ├── GitStatics.ps1 │ └── ModuleStatics.ps1 ├── Complete │ ├── CompleteFile.ps1 │ ├── CompletionUtil.ps1 │ ├── GitCompleteCommand.ps1 │ ├── GitRoot.ps1 │ ├── Gitk.ps1 │ ├── SubCommand │ │ ├── Add-Stage.ps1 │ │ ├── Am.ps1 │ │ ├── Apply.ps1 │ │ ├── Archive.ps1 │ │ ├── Bisect.ps1 │ │ ├── Branch.ps1 │ │ ├── Bundle.ps1 │ │ ├── Checkout.ps1 │ │ ├── CherryPick-Revert.ps1 │ │ ├── Clean.ps1 │ │ ├── Clone.ps1 │ │ ├── Commit.ps1 │ │ ├── Config.ps1 │ │ ├── ConfigDescription.ps1 │ │ ├── Describe.ps1 │ │ ├── Diff.ps1 │ │ ├── Difftool.ps1 │ │ ├── Fetch.ps1 │ │ ├── FormatPatch.ps1 │ │ ├── Grep.ps1 │ │ ├── Help.ps1 │ │ ├── Init.ps1 │ │ ├── Log-Whatchanged.ps1 │ │ ├── LsFiles.ps1 │ │ ├── LsRemote.ps1 │ │ ├── LsTree.ps1 │ │ ├── Merge.ps1 │ │ ├── MergeBase.ps1 │ │ ├── Mergetool.ps1 │ │ ├── Mv.ps1 │ │ ├── Notes.ps1 │ │ ├── Pull.ps1 │ │ ├── Push.ps1 │ │ ├── RangeDiff.ps1 │ │ ├── Rebase.ps1 │ │ ├── Reflog.ps1 │ │ ├── Remote.ps1 │ │ ├── Replace.ps1 │ │ ├── Rerere.ps1 │ │ ├── Reset.ps1 │ │ ├── Restore.ps1 │ │ ├── Rm.ps1 │ │ ├── SendEmail.ps1 │ │ ├── Shortlog.ps1 │ │ ├── Show.ps1 │ │ ├── ShowBranch.ps1 │ │ ├── SparseCheckout.ps1 │ │ ├── Stash.ps1 │ │ ├── Status.ps1 │ │ ├── Submodule.ps1 │ │ ├── Svn.ps1 │ │ ├── Switch.ps1 │ │ ├── SymbolicRef.ps1 │ │ ├── Tag.ps1 │ │ └── Worktree.ps1 │ └── SubCommandCommon.ps1 ├── git-completion.psd1 └── git-completion.psm1 ├── tests ├── CommandLineContext.Tests.ps1 ├── CompleteFile.Tests.ps1 ├── ConfigVariable.Tests.ps1 ├── GitAlias.Tests.ps1 ├── GitDir.Tests.ps1 ├── GitGlobal.Tests.ps1 ├── Gitk.Tests.ps1 ├── IgnoreCase.Tests.ps1 ├── ShowAllOptions.Tests.ps1 └── SubCommand │ ├── Add.Tests.ps1 │ ├── Am.Tests.ps1 │ ├── Apply.Tests.ps1 │ ├── Archive.Tests.ps1 │ ├── Bisect.Tests.ps1 │ ├── Branch.Tests.ps1 │ ├── Bundle.Tests.ps1 │ ├── Checkout.Tests.ps1 │ ├── CherryPick.Tests.ps1 │ ├── Clean.Tests.ps1 │ ├── Clone.Tests.ps1 │ ├── Commit.Tests.ps1 │ ├── Config.Tests.ps1 │ ├── Describe.Tests.ps1 │ ├── Diff.Tests.ps1 │ ├── Difftool.Tests.ps1 │ ├── Fetch.Tests.ps1 │ ├── FormatPatch.Tests.ps1 │ ├── Grep.Tests.ps1 │ ├── Help.Tests.ps1 │ ├── Init.Tests.ps1 │ ├── Log.Tests.ps1 │ ├── LsFiles.Tests.ps1 │ ├── LsRemote.Tests.ps1 │ ├── LsTree.Tests.ps1 │ ├── Merge.Tests.ps1 │ ├── MergeBase.Tests.ps1 │ ├── Mergetool.Tests.ps1 │ ├── Mv.Tests.ps1 │ ├── Notes.Tests.ps1 │ ├── Pull.Tests.ps1 │ ├── Push.Tests.ps1 │ ├── RangeDiff.Tests.ps1 │ ├── Rebase.Tests.ps1 │ ├── Reflog.Tests.ps1 │ ├── Remote.Tests.ps1 │ ├── Replace.Tests.ps1 │ ├── Rerere.Tests.ps1 │ ├── Reset.Tests.ps1 │ ├── Restore.Tests.ps1 │ ├── Revert.Tests.ps1 │ ├── Rm.Tests.ps1 │ ├── SendEmail.Tests.ps1 │ ├── Shortlog.Tests.ps1 │ ├── Show.Tests.ps1 │ ├── ShowBranch.Tests.ps1 │ ├── SparseCheckout.Tests.ps1 │ ├── Stash.Tests.ps1 │ ├── Status.Tests.ps1 │ ├── SubCommandCommon.Tests.ps1 │ ├── Submodule.Tests.ps1 │ ├── Svn.Tests.ps1 │ ├── Switch.Tests.ps1 │ ├── SymbolicRef.Tests.ps1 │ ├── Tag.Tests.ps1 │ └── Worktree.Tests.ps1 ├── testtools ├── ConvertCompletion.ps1 ├── RemoteRepo.zip ├── Revlist.ps1 ├── TestInitialize.ps1 └── TestModule.psm1 └── tools ├── description.ps1 ├── dist.ps1 ├── listUpdatedTests.ps1 ├── load.ps1 ├── makeExpected.ps1 └── run.ps1 /.github/actions/latest-git/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.github/actions/latest-git/action.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /3rd-party-license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/3rd-party-license.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/README.md -------------------------------------------------------------------------------- /src/Common/CommandLineContext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/CommandLineContext.ps1 -------------------------------------------------------------------------------- /src/Common/GitCommands.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/GitCommands.ps1 -------------------------------------------------------------------------------- /src/Common/GitCommandsIndexedFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/GitCommandsIndexedFiles.ps1 -------------------------------------------------------------------------------- /src/Common/GitCompletionSettings.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/GitCompletionSettings.ps1 -------------------------------------------------------------------------------- /src/Common/GitDescription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/GitDescription.ps1 -------------------------------------------------------------------------------- /src/Common/GitStatics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/GitStatics.ps1 -------------------------------------------------------------------------------- /src/Common/ModuleStatics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Common/ModuleStatics.ps1 -------------------------------------------------------------------------------- /src/Complete/CompleteFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/CompleteFile.ps1 -------------------------------------------------------------------------------- /src/Complete/CompletionUtil.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/CompletionUtil.ps1 -------------------------------------------------------------------------------- /src/Complete/GitCompleteCommand.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/GitCompleteCommand.ps1 -------------------------------------------------------------------------------- /src/Complete/GitRoot.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/GitRoot.ps1 -------------------------------------------------------------------------------- /src/Complete/Gitk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/Gitk.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Add-Stage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Add-Stage.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Am.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Am.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Apply.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Apply.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Archive.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Archive.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Bisect.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Bisect.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Branch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Branch.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Bundle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Bundle.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Checkout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Checkout.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/CherryPick-Revert.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/CherryPick-Revert.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Clean.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Clean.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Clone.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Clone.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Commit.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Commit.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Config.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/ConfigDescription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/ConfigDescription.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Describe.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Describe.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Diff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Diff.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Difftool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Difftool.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Fetch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Fetch.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/FormatPatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/FormatPatch.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Grep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Grep.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Help.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Help.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Init.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Log-Whatchanged.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Log-Whatchanged.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/LsFiles.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/LsFiles.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/LsRemote.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/LsRemote.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/LsTree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/LsTree.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Merge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Merge.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/MergeBase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/MergeBase.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Mergetool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Mergetool.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Mv.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Mv.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Notes.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Notes.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Pull.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Pull.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Push.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Push.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/RangeDiff.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/RangeDiff.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Rebase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Rebase.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Reflog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Reflog.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Remote.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Remote.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Replace.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Replace.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Rerere.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Rerere.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Reset.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Reset.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Restore.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Restore.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Rm.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Rm.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/SendEmail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/SendEmail.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Shortlog.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Shortlog.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Show.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Show.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/ShowBranch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/ShowBranch.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/SparseCheckout.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/SparseCheckout.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Stash.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Stash.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Status.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Status.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Submodule.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Submodule.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Svn.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Svn.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Switch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Switch.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/SymbolicRef.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/SymbolicRef.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Tag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Tag.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommand/Worktree.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommand/Worktree.ps1 -------------------------------------------------------------------------------- /src/Complete/SubCommandCommon.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/Complete/SubCommandCommon.ps1 -------------------------------------------------------------------------------- /src/git-completion.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/git-completion.psd1 -------------------------------------------------------------------------------- /src/git-completion.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/src/git-completion.psm1 -------------------------------------------------------------------------------- /tests/CommandLineContext.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/CommandLineContext.Tests.ps1 -------------------------------------------------------------------------------- /tests/CompleteFile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/CompleteFile.Tests.ps1 -------------------------------------------------------------------------------- /tests/ConfigVariable.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/ConfigVariable.Tests.ps1 -------------------------------------------------------------------------------- /tests/GitAlias.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/GitAlias.Tests.ps1 -------------------------------------------------------------------------------- /tests/GitDir.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/GitDir.Tests.ps1 -------------------------------------------------------------------------------- /tests/GitGlobal.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/GitGlobal.Tests.ps1 -------------------------------------------------------------------------------- /tests/Gitk.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/Gitk.Tests.ps1 -------------------------------------------------------------------------------- /tests/IgnoreCase.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/IgnoreCase.Tests.ps1 -------------------------------------------------------------------------------- /tests/ShowAllOptions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/ShowAllOptions.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Add.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Add.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Am.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Am.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Apply.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Apply.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Archive.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Archive.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Bisect.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Bisect.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Branch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Branch.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Bundle.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Bundle.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Checkout.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Checkout.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/CherryPick.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/CherryPick.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Clean.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Clean.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Clone.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Clone.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Commit.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Commit.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Config.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Config.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Describe.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Describe.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Diff.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Diff.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Difftool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Difftool.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Fetch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Fetch.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/FormatPatch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/FormatPatch.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Grep.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Grep.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Help.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Help.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Init.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Init.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Log.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Log.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/LsFiles.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/LsFiles.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/LsRemote.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/LsRemote.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/LsTree.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/LsTree.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Merge.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Merge.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/MergeBase.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/MergeBase.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Mergetool.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Mergetool.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Mv.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Mv.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Notes.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Notes.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Pull.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Pull.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Push.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Push.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/RangeDiff.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/RangeDiff.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Rebase.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Rebase.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Reflog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Reflog.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Remote.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Remote.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Replace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Replace.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Rerere.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Rerere.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Reset.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Reset.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Restore.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Restore.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Revert.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Revert.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Rm.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Rm.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/SendEmail.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/SendEmail.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Shortlog.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Shortlog.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Show.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Show.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/ShowBranch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/ShowBranch.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/SparseCheckout.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/SparseCheckout.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Stash.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Stash.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Status.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Status.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/SubCommandCommon.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/SubCommandCommon.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Submodule.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Submodule.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Svn.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Svn.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Switch.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Switch.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/SymbolicRef.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/SymbolicRef.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Tag.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Tag.Tests.ps1 -------------------------------------------------------------------------------- /tests/SubCommand/Worktree.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tests/SubCommand/Worktree.Tests.ps1 -------------------------------------------------------------------------------- /testtools/ConvertCompletion.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/testtools/ConvertCompletion.ps1 -------------------------------------------------------------------------------- /testtools/RemoteRepo.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/testtools/RemoteRepo.zip -------------------------------------------------------------------------------- /testtools/Revlist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/testtools/Revlist.ps1 -------------------------------------------------------------------------------- /testtools/TestInitialize.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/testtools/TestInitialize.ps1 -------------------------------------------------------------------------------- /testtools/TestModule.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/testtools/TestModule.psm1 -------------------------------------------------------------------------------- /tools/description.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/description.ps1 -------------------------------------------------------------------------------- /tools/dist.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/dist.ps1 -------------------------------------------------------------------------------- /tools/listUpdatedTests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/listUpdatedTests.ps1 -------------------------------------------------------------------------------- /tools/load.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/load.ps1 -------------------------------------------------------------------------------- /tools/makeExpected.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/makeExpected.ps1 -------------------------------------------------------------------------------- /tools/run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kzrnm/git-completion-pwsh/HEAD/tools/run.ps1 --------------------------------------------------------------------------------