Monday, 22 May 2017

Enable git auto complete and enable color in git terminal -- mac

For autocomplete
——————————
Step 1 : goto terminal put git-completion.bash script in your home directory
curl https://raw.githubusercontent.com/git... -o ~/.git-completion.bash


Step 2 : Add following line to your .bash_profile. This tells bash to run git autocomplete script if it exists

vi ~/.bash_profile

if [ -f ~/.git-completion.bash ]; then
. ~/.git-completion.bash
fi


For enabling git colors
————————————

Step 1 : check if colouring is already enabled
terminal - git config color.ui

Step 2 : enable colouring 
git config --global color.ui true

No comments:

Post a Comment