summaryrefslogtreecommitdiff
path: root/bin/git-ps1
blob: 8a09800911638f07b07a58fb0f31ade1b265582c (plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env bash
r=
b=
g="$(git rev-parse --git-dir 2>/dev/null)"

if [ -n "$g" ]; then
    if [ -d "$g/../.dotest" ]
        then
        if test -f "$g/../.dotest/rebasing"
            then
            r="|REBASE"
        elif test -f "$g/../.dotest/applying"
            then
            r="|AM"
        else
            r="|AM/REBASE"
        fi
        b="$(git symbolic-ref HEAD 2>/dev/null)"
    elif [ -f "$g/.dotest-merge/interactive" ]
        then
        r="|REBASE-i"
        b="$(cat "$g/.dotest-merge/head-name")"
    elif [ -d "$g/.dotest-merge" ]
        then
        r="|REBASE-m"
        b="$(cat "$g/.dotest-merge/head-name")"
    elif [ -f "$g/MERGE_HEAD" ]
        then
        r="|MERGING"
        b="$(git symbolic-ref HEAD 2>/dev/null)"
    else
        if [ -f "$g/BISECT_LOG" ]
            then
            r="|BISECTING"
        fi
        if ! b="$(git symbolic-ref HEAD 2>/dev/null)"
            then
            if ! b="$(git describe --exact-match HEAD 2>/dev/null)"
                then
                b="$(cut -c1-7 "$g/HEAD")..."
            fi
        fi
    fi

    if [ -n "$1" ]; then
        printf "$1" "${b##refs/heads/}$r"
    else
        printf "%s" "${b##refs/heads/}$r"
    fi
else
    printf "not-in-git"
fi