Difference between revisions of "Git"

From Lofaro Lab Wiki
Jump to: navigation, search
(Tab completion on Mac)
(Tab completion on Mac)
 
(One intermediate revision by the same user not shown)
Line 5: Line 5:
 
</syntaxhighlight>
 
</syntaxhighlight>
  
add the following to <syntaxhighlight lang='bash'>~/.bash_profile</syntaxhighlight>
+
add the following to '''~/.bash_profile'''
  
<syntaxhighlight lang='basic'>
+
<syntaxhighlight lang='bash'>
 
if [ -f ~/.git-completion.bash ]; then
 
if [ -f ~/.git-completion.bash ]; then
 
   . ~/.git-completion.bash
 
   . ~/.git-completion.bash
 
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.