git tip
git plugin
git
-
- Using git +
tab
like autocompletion. It auto-complete for branches.- 비슷한 기능 : git-flow-completion / homebrew로 제공
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
- Using git +
-
gitignore plugin
- gitignore 에서 제외할 환경검색.
- gitignore.io - command line 사용하면 편리함.
- 예제
gi java,python >> .gitignore
- 예제