Skip to content

Instantly share code, notes, and snippets.

View kishorpawar's full-sized avatar
🏠
Working from home

Kishor Pawar kishorpawar

🏠
Working from home
View GitHub Profile
@kishorpawar
kishorpawar / install-git-completion.sh
Last active January 27, 2018 18:18 — forked from johngibb/install-git-completion.sh
Mac OS X - Install Git Completion
URL="https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash"
PROFILE="$HOME/.profile"
echo "Downloading git-completion..."
if ! curl -L "$URL" --silent --output "$HOME/.git-completion.bash"; then
echo "ERROR: Couldn't download completion script. Make sure you have a working internet connection." && exit 1
fi