aboutsummaryrefslogtreecommitdiff
path: root/bash/bashrc.d/vr.bash
blob: 8b7855da55c987a3ba2f645bc4d7f8342e903138 (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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Move to the root directory of a VCS working copy
vr() {
    local path=${1:-$PWD}
    path=${path%/}

    # Raise some helpful errors
    if ! [[ -e $path ]] ; then
        printf 'bash: %s: %s: No such file or directory\n' \
            "$FUNCNAME" "$path"
        return
    fi
    if ! [[ -d $path ]] ; then
        printf 'bash: %s: %s: Not a directory\n' \
            "$FUNCNAME" "$path"
        return
    fi
    if ! [[ -x $path ]] ; then
        printf 'bash: %s: %s: Permission denied\n' \
            "$FUNCNAME" "$path"
        return
    fi
    
    # Ask Git the top level
    local git_root=$(cd -- "$path" && git rev-parse --show-toplevel 2>/dev/null)
    if [[ $git_root ]] ; then
        cd -- "$git_root"
        return
    fi

    # Ask Mercurial the top level
    local hg_root=$(cd -- "$path" && hg root 2>/dev/null)
    if [[ $hg_root ]] ; then
        cd -- "$hg_root"
        return
    fi

    # If we have a .svn dir, iterate upwards until we find an ancestor that
    # doesn't; hopefully that's the root
    if [[ -d $path/.svn ]] ; then
        local search=$path
        while [[ $search ]] ; do
            if [[ -d ${search%/*}/.svn ]] ; then
                search=${search%/*}
            else
                cd -- "$search"
                return
            fi
        done
    fi

    # Couldn't find repository root, say so
    printf 'bash: %s: Failed to find repository root\n' \
        "$FUNCNAME" >&2
    return 1
}
complete -A directory vr