Documentation ¶
Index ¶
Constants ¶
View Source
const ( ShellWelcomeMessage = `` /* 355-byte string literal not displayed */ AbortFileName = ".abort_rebase" )
Variables ¶
View Source
var (
ErrAbort = fmt.Errorf("rebase aborted by user")
)
Functions ¶
This section is empty.
Types ¶
type Blind ¶
type Blind struct{}
Blind behaves as if there are no conflicts and simply stages the changes files without doing anything.
type MergeResolver ¶
type MergeResolver struct {
Strategy ResolveStrategy
}
func (MergeResolver) Resolve ¶
func (m MergeResolver) Resolve(wt *git.Worktree) error
type NoopResolver ¶ added in v0.0.1
type NoopResolver struct{}
func (NoopResolver) Resolve ¶ added in v0.0.1
func (n NoopResolver) Resolve(*git.Worktree) error
type ResolveStrategy ¶
type ResolveStrategy int
const ( StrategyOurs ResolveStrategy = iota StrategyTheirs )
Click to show internal directories.
Click to hide internal directories.