Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
GIT-PKGS(1)			Git Pkgs Manual			   GIT-PKGS(1)

NAME
       git-pkgs-completion - Generate shell completions

SYNOPSIS
       git-pkgs	completion [shell]

DESCRIPTION
       Generate	shell completion scripts for git-pkgs.

       To load completions:

       Bash:
	 $ source <(git	pkgs completion	bash)
	 # To load completions for each	session, execute once:
	 # Linux:
	 $ git pkgs completion bash > /etc/bash_completion.d/git-pkgs
	 # macOS:
	 $  git	 pkgs  completion  bash	 >  $(brew  --prefix)/etc/bash_comple-
       tion.d/git-pkgs

       Zsh:
	 # If shell completion is not already enabled in your environment,
	 # you will need to enable it. You can execute the following once:
	 $ echo	"autoload -U compinit; compinit" >> ~/.zshrc

       # To load completions for each session, execute once:
	 $ git pkgs completion zsh > "${fpath[1]}/_git-pkgs"

       # You will need to start	a new shell for	this setup to take effect.

       Fish:
	 $ git pkgs completion fish | source
	 # To load completions for each	session, execute once:
	 $ git pkgs completion fish > ~/.config/fish/completions/git-pkgs.fish

       PowerShell:
	 PS> git pkgs completion powershell | Out-String | Invoke-Expression
	 # To load completions for every new session, run:
	 PS> git pkgs completion powershell > git-pkgs.ps1
	 # and source this file	from your PowerShell profile.

OPTIONS
       -h, --help[=false]      help for	completion

OPTIONS	INHERITED FROM PARENT COMMANDS
       --color="auto"	   When	to colorize output: auto, always, never

       --include-submodules[=false]	 Include git submodules	when  scanning
       for manifests

       -p, --pager[=false]	Use pager for output

       -q, --quiet[=false]	Suppress non-essential output

SEE ALSO
       git-pkgs(1)

HISTORY
       11-Jun-2026 Auto	generated by spf13/cobra

git-pkgs			   Jun 2026			   GIT-PKGS(1)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=git-pkgs-completion&sektion=1&manpath=FreeBSD+Ports+15.1.quarterly>

home | help