Skip to content
Branch: master
Find file History
dsifford use `command grep` vs `grep`
This change accounts for uses who might have an alias set to grep with is not compatible with `grep -E` (e.g. `alias grep=rg`)
Latest commit 410e841 Dec 14, 2019
Permalink
Type Name Latest commit message Commit time
..
Failed to load latest commit information.
README.md [docs] Don't assume that Homebrew is always on macOS Mar 12, 2019
hub.bash_completion.sh use `command grep` vs `grep` Dec 14, 2019
hub.fish_completion
hub.zsh_completion Add pull-request --no-edit flag to zsh completion Feb 21, 2019

README.md

Installation instructions

Homebrew

If you're using Homebrew, just run brew install hub and you should be all set with auto-completion. The extra steps to install hub completion scripts outlined below are not needed.

For bash/zsh, a one-time setup might be needed to enable completion for all Homebrew programs.

bash

Open your .bashrc file if you're on Linux, or your .bash_profile if you're on macOS and add:

if [ -f /path/to/hub.bash_completion ]; then
  . /path/to/hub.bash_completion
fi

zsh

Copy the file etc/hub.zsh_completion from the location where you downloaded hub to the folder ~/.zsh/completions/ and rename it to _hub:

mkdir -p ~/.zsh/completions
cp etc/hub.zsh_completion ~/.zsh/completions/_hub

Then add the following lines to your .zshrc file:

fpath=(~/.zsh/completions $fpath) 
autoload -U compinit && compinit

fish

Copy the file etc/hub.fish_completion from the location where you downloaded hub to the folder ~/.config/fish/completions/ and rename it to hub.fish:

mkdir -p ~/.config/fish/completions
cp etc/hub.fish_completion ~/.config/fish/completions/hub.fish
You can’t perform that action at this time.