Difference between revisions of "Git"

From Lofaro Lab Wiki
Jump to: navigation, search
(Tab completion on Mac)
(Tab completion on Mac)
 
Line 12: Line 12:
 
fi
 
fi
 
</syntaxhighlight>
 
</syntaxhighlight>
 +
 +
re-source your '''~/.bash_profile''' or open a new terminal.
 +
 +
Done.

Latest revision as of 14:39, 1 March 2015

Tips and Tricks

Tab completion on Mac

curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash

add the following to ~/.bash_profile

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

re-source your ~/.bash_profile or open a new terminal.

Done.