File: git-rebase

package info (click to toggle)
yash 2.50-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,036 kB
  • sloc: ansic: 33,211; makefile: 839; sh: 477; sed: 16
file content (100 lines) | stat: -rw-r--r-- 3,321 bytes parent folder | download | duplicates (2)
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# (C) 2011-2019 magicant

# Completion script for the "git-rebase" command.
# Supports Git 2.24.0.

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

function completion/git::rebase:arg {

	OPTIONS=()
	command -f completion/git::rebase:getopt

	command -f completion//parseoptions -n
	case $ARGOPT in
		(-)
			command -f completion//completeoptions
			;;
		('')
			command -f completion/git::completeref
			;;
		(*)
			command -f completion/git::rebase:compopt
			;;
	esac

}

function completion/git::rebase:getopt {
	OPTIONS=("$OPTIONS" #>#
	"--abort; abort the current rebasing and reset to the original"
	"--allow-empty-message"
	"--autosquash; find commits to be squashed (with -i)"
	"--autostash; stash before and restore after rebasing"
	"--committer-date-is-author-date; use author date for committer date"
	"--continue; continue the current rebasing"
	"--edit-todo; re-edit the to-do list of the current rebasing"
	"f --force-rebase --no-ff; create new commits without fast-forwarding"
	"--fork-point; use reflog to find a better common ancestor"
	"--ignore-date; use committer date for author date"
	"i --interactive; interactively reedit commits that are rebased"
	"--keep-base; apply commits starting from the same merge base"
	"--keep-empty; don't omit commits that make no change"
	"m --merge; use merging strategies to rebase"
	"--no-autosquash; cancel the --autosquash option"
	"--no-autostash; cancel the --autostash option"
	"--no-fork-point; ignore reflog when finding a better common ancestor"
	"--no-reschedule-failed-exec"
	"--no-rerere-autoupdate; disable the rerere mechanism"
	"n --no-stat; don't print a diffstat"
	"--no-verify; don't run the pre-rebase hook"
	"--onto; specify a branch to rebase onto"
	# Deprecated "p --preserve-merges; don't ignore merge commits"
	"q --quiet; don't print anything"
	"--quit; end suspended rebasing and keep the current state"
	"r --rebase-merges::; recreate merge commits"
	"--rerere-autoupdate; enable the rerere mechanism"
	"--reschedule-failed-exec"
	"--root; rebase all ancestor commits"
	"S:: --gpg-sign::; sign commits with GPG"
	"--signoff; add a \"signed-off-by\" line to the message"
	"--show-current-patch"
	"--skip; skip the current patch and continue rebasing"
	"--stat; print a diffstat from the last rebase"
	"s: --strategy:; specify the merge strategy"
	"x: --exec:; insert an \"exec\" line with the specified command after each commit (with -i)"
	"X: --strategy-option:; specify a strategy-specific option"
	"v --verbose" # TODO description
	"--verify; run the pre-rebase hook"
	) #<#
	if command -vf completion/git::apply:getopt >/dev/null 2>&1 ||
			. -AL completion/git-apply; then
		command -f completion/git::apply:getopt rebase
	fi
}

function completion/git::rebase:compopt
	case $ARGOPT in
		(--rebase-merges)
			complete -P "$PREFIX" no-rebase-cousins rebase-cousins
			;;
		(S|--gpg-sign)
			#TODO
			;;
		(*)
			if command -vf completion/git::apply:compopt >/dev/null 2>&1 ||
					. -AL completion/git-apply; then
				command -f completion/git::apply:compopt
			fi
			if command -vf completion/git::merge:compopt >/dev/null 2>&1 ||
					. -AL completion/git-merge; then
				command -f completion/git::merge:compopt
			fi
			;;
	esac


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