Skip to content

Instantly share code, notes, and snippets.

@sagarpanda
Created August 12, 2017 02:11
Show Gist options
  • Select an option

  • Save sagarpanda/9bfe8628483acb7719fe100ea394fd7d to your computer and use it in GitHub Desktop.

Select an option

Save sagarpanda/9bfe8628483acb7719fe100ea394fd7d to your computer and use it in GitHub Desktop.
macOS configuration
### Git autocomplete in terminal
brew install git
vi ~/.bash_profile
------------------------
if [ -f $(brew --prefix)/etc/bash_completion ]; then
. $(brew --prefix)/etc/bash_completion
fi
if [ -f `brew --prefix`/etc/bash_completion.d/git-completion.bash ]; then
. `brew --prefix`/etc/bash_completion.d/git-completion.bash
fi
-----------------------
source ~/.bash_profile
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment