提交 5b76f1ad 编写于 作者: M Mislav Marohnić

Touch up docs for shell completion scripts

上级 13b87db6
......@@ -6,27 +6,22 @@ If you're using Homebrew, just run `brew install hub` and you should be all set
## bash
Open your `.bashrc` file if you're on Linux, or your `.bash_profile` if you're on OS X and add:
Open your `.bashrc` file if you're on Linux, or your `.bash_profile` if you're on macOS and add:
```sh
if [ -f /path/to/hub.bash_completion ]; then
. /path/to/hub.bash_completion
. /path/to/hub.bash_completion
fi
```
## zsh
Create a new folder for completions:
Copy the file `etc/hub.zsh_completion` from the location where you downloaded
`hub` to the folder `~/.zsh/completions/` and rename it to `_hub`:
```sh
mkdir -p ~/.zsh/completions
```
Copy the file `/etc/hub.zsh_completion` from the location where you downloaded `hub` to the folder `~/.zsh/completions/` and rename it to `_hub`:
```sh
cp /path/to/etc/hub.zsh_completion ~/.zsh/completions/ \
mv ~/.zsh/completions/hub.zsh_completion ~/.zsh/completions/_hub
cp etc/hub.zsh_completion ~/.zsh/completions/_hub
```
Then add the following lines to your `.zshrc` file:
......@@ -38,10 +33,10 @@ autoload -U compinit && compinit
## fish
Copy the file `/etc/hub.fish_completion` from the location where you downloaded
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`:
```sh
mkdir -p ~/.config/fish/completions
cp /path/to/etc/hub.fish_completion ~/.config/fish/completions/hub.fish
cp etc/hub.fish_completion ~/.config/fish/completions/hub.fish
```
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册