manager/unprocessed/bash/bashrc.d/git

11 lines
288 B
Text
Raw Normal View History

2022-04-18 00:14:34 +01:00
## File: ~/.bashrc.d/git
## Description: Bash configuration for Git
## vim: ft=sh :
if [ -f /usr/share/bash-completion/completions/git ]; then
source /usr/share/bash-completion/completions/git
fi
alias g="git"
complete -o bashdefault -o default -o nospace -F __git_wrap__git_main g