File: git-rebase

package info (click to toggle)
yash 2.43-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 7,184 kB
  • ctags: 3,159
  • sloc: ansic: 31,766; makefile: 812; sh: 407; sed: 16
file content (80 lines) | stat: -rw-r--r-- 2,503 bytes parent folder | download | duplicates (3)
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
# (C) 2011-2013 magicant

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

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"
	"--autosquash; find commits to be squashed (with -i)"
	"--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; rebase even if the branch is up-to-date"
	"--ignore-date; use committer date for author date"
	"i --interactive; interactively reedit commits that are rebased"
	"--keep-empty; don't omit commits that make no change"
	"m --merge; use merging strategies to rebase"
	"--no-autosquash; cancel the --autosquash option"
	"--no-ff; don't fast-forward even if possible"
	"n --no-stat; don't print a diffstat"
	"--no-verify; don't run the pre-rebase hook"
	"--onto; specify a branch to rebase onto"
	"p --preserve-merges; don't ignore merge commits"
	"q --quiet; don't print anything"
	"--root; rebase all ancestor commits"
	"--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
		(*)
			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: