git town completions [bash|zsh|fish|powershell]
The completions command outputs shell scripts that enable auto-completion for
Git Town in Bash, Zsh, Fish, or PowerShell. When set up, typing
git-town <tab key>
in your terminal will auto-complete subcommands.
Bash
To load autocompletion for Bash, run this command:
git-town completions bash | source
To load completions for each session, add the above line to your .bashrc
.
Zsh
To load autocompletions for Zsh, run this command:
git-town completions zsh | source
To load completions for each session, add the above line to your .zshrc
.
Fish
To load autocompletions for Fish, run this command:
git-town completions fish | source
CAUTION: pending upstream issue breaks this: https://github.com/spf13/cobra/pull/1122
To load completions for each session, add the above line to your
.config/fish/config.fish
.
Powershell
To install autocompletions for Powershell, run this command:
git-town completions powershell | Out-String | Invoke-Expression
To load completions for each session, add the above line to your PowerShell profile.