summaryrefslogtreecommitdiffstats
path: root/pkg/commands/types/enums/enums.go
blob: 7e8a81798bf99d23951b10fc70754196589f83ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package enums

type RebaseMode int

const (
	// this means we're neither rebasing nor merging
	REBASE_MODE_NONE RebaseMode = iota
	// this means normal rebase as opposed to interactive rebase
	REBASE_MODE_NORMAL
	REBASE_MODE_INTERACTIVE
	// REBASE_MODE_REBASING is a general state that captures both REBASE_MODE_NORMAL and REBASE_MODE_INTERACTIVE
	REBASE_MODE_REBASING
	REBASE_MODE_MERGING
)