Skip to content

Latest commit

 

History

History
22 lines (19 loc) · 957 Bytes

git_tip.md

File metadata and controls

22 lines (19 loc) · 957 Bytes

Keyword

git tip git plugin git

Reference

정리

  • git autocompletion script

    • Using git + tab like autocompletion. It auto-complete for branches.
    • curl https://raw.githubusercontent.com/git/git/master/contrib/completion/git-completion.bash -o ~/.git-completion.bash
    • add to ~/.bash_profile
    if [ -f ~/.git-completion.bash ]; then
    . ~/.git-completion.bash
    fi
    
    • Give the script permission to run : chmod -X ~/.git-completion.bash
  • gitignore plugin