Created
August 12, 2017 02:11
-
-
Save sagarpanda/9bfe8628483acb7719fe100ea394fd7d to your computer and use it in GitHub Desktop.
macOS configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ### 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