Skip to content

Commit

Permalink
Add bash + homebrew section and bash_profile mention
Browse files Browse the repository at this point in the history
Also removed instructions and references to set up git auto-completion.
  • Loading branch information
heitortsergent committed Oct 18, 2015
1 parent d0df016 commit 296f43a
Showing 1 changed file with 4 additions and 13 deletions.
17 changes: 4 additions & 13 deletions etc/README.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,14 @@
# Installation instructions

## bash
## bash + Homebrew

Open your `.bashrc` file and add:
If you're using Homebrew, just run `brew install hub` and you should be all set with auto-completion.

> If you want to set up Git to automatically have Bash shell completion for all users, copy the `hub.bash_completion` script to the `/opt/local/etc/bash_completion.d` directory on Mac systems or to the `/etc/bash_completion.d/` directory on Linux systems. ([Source](https://git-scm.com/book/en/v1/Git-Basics-Tips-and-Tricks#Auto-Completion))
## bash

* [Link to git auto-completion bash file](https://github.com/git/git/blob/master/contrib/completion/git-completion.bash)
Open your `.bashrc` file if you're on Linux, or your `.bash_profile` if you're on OS X and add:

```sh
# Make sure you've aliased hub to git
eval "$(hub alias -s)"

# And make sure that the git auto-completion is being loaded
if [ -f /path/to/git-completion.bash ]; then
. /path/to/git-completion.bash
fi

# Load hub autocompletion
if [ -f /path/to/hub.bash_completion ]; then
. /path/to/hub.bash_completion
fi
Expand Down

0 comments on commit 296f43a

Please sign in to comment.