File: git-checkout

package info (click to toggle)
yash 2.60-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,152 kB
  • sloc: ansic: 34,578; makefile: 851; sh: 808; sed: 16
file content (70 lines) | stat: -rw-r--r-- 2,926 bytes parent folder | download
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
58
59
60
61
62
63
64
65
66
67
68
69
70
# (C) 2011-2014 magicant

# Completion script for the "git-checkout" command.
# Supports Git 2.48.1.

function completion/git-checkout {
        WORDS=(git checkout "${WORDS[2,-1]}")
        command -f completion//reexecute
}

function completion/git::checkout:arg {

        OPTIONS=( #>#
        "B:; create or reset a new branch and check it out"
        "b:; create a new branch and check it out"
        "--conflict:; like --merge, but specify format of unmerged files"
        "d --detach; leave HEAD in detached head state"
        "f --force; overwrite local changes or ignore unmerged files"
        "--guess; auto-create a branch from existing remote"
        "--ignore-other-worktrees; force if already checked out in another worktree"
        "--ignore-skip-worktree-bits; ignore sparse patterns"
        "l; enable reflog for the new branch"
        "m --merge; do 3-way merge for destination branch"
        "--no-guess; don't auto-create a branch from existing remote"
        "--no-overlay; remove files to match the target"
        "--no-overwrite-ignore; abort if ignored files would be overwritten"
        "--no-progress; don't show progress"
        "--no-recurse-submodules; don't propagate checkout in submodules"
        "--no-track; create a non-tracking branch"
        "--orphan:; create a new branch with no parent"
        "--ours; checkout local version for unmerged files"
        "--overlay; don't remove files from the index"
        "--overwrite-ignore; overwrite ignored files"
        "p --patch; interactively choose hunks to check out"
        "--pathspec-file-nul; use nul as separator for pathspecs"
        "--pathspec-from-file:; read pathspecs from file"
        "--progress; show progress"
        "--recurse-submodules; propagate checkout in submodules"
        "q --quiet; print error and warning messages only"
        "--theirs; checkout remote version for unmerged files"
        "t:: --track::; create a tracking branch"
        ) #<#

        command -f completion//parseoptions -n
        case $ARGOPT in
                (-)
                        command -f completion//completeoptions
                        ;;
                ([Bb]|--orphan)
                        command -f completion/git::completeref --branches
                        ;;
                (--conflict) #>>#
                        complete -P "$PREFIX" -D "ours and theirs" merge
                        complete -P "$PREFIX" -D "ours, theirs, and original" diff3
                        ;; #<<#
                (--pathspec-from-file)
                        complete -P "$PREFIX" -f
                        ;;
                (t|--track)
                        command -f completion/git::--track:arg
                        ;;
                ('')
                        command -f completion/git::completerefpath
                        ;;
        esac

}


# vim: set ft=sh ts=8 sts=8 sw=8 et: