aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/git.bash
blob: ba45d4ad4e32746d01437b87b2354cf965636d90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Bail if no git(1)
if ! hash git 2>/dev/null ; then
    return
fi

# Completion for git local branch names
_git() {

    # Bail if not a git repo
    if ! git rev-parse --git-dir >/dev/null 2>&1 ; then
        return 1
    fi

    # Get current and previous word
    local word=${COMP_WORDS[COMP_CWORD]}
    local first=${COMP_WORDS[1]}

    # Switch on the previous word
    case $first in

        # If the first word is appropriate, complete with branch/tag names
        checkout|merge|rebase)
            local -a branches
            local branch
            while read -r branch ; do
                branches=("${branches[@]}" "${branch##*/}")
            done < <(git for-each-ref refs/{heads,tags} 2>/dev/null)
            COMPREPLY=( $(compgen -W "${branches[*]}" -- "$word") )
            return
            ;;

        # Bail if it isn't
        *)
            return 1
            ;;
    esac
}
complete -F _git -o default git