mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-01-22 05:29:44 +02:00
144 lines
2.7 KiB
Go
144 lines
2.7 KiB
Go
package shared
|
|
|
|
import (
|
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
|
)
|
|
|
|
var OriginalFileContent = `
|
|
This
|
|
Is
|
|
The
|
|
Original
|
|
File
|
|
`
|
|
|
|
var FirstChangeFileContent = `
|
|
This
|
|
Is
|
|
The
|
|
First Change
|
|
File
|
|
`
|
|
|
|
var SecondChangeFileContent = `
|
|
This
|
|
Is
|
|
The
|
|
Second Change
|
|
File
|
|
`
|
|
|
|
// prepares us for a rebase/merge that has conflicts
|
|
var MergeConflictsSetup = func(shell *Shell) {
|
|
shell.
|
|
NewBranch("original-branch").
|
|
EmptyCommit("one").
|
|
EmptyCommit("two").
|
|
EmptyCommit("three").
|
|
CreateFileAndAdd("file", OriginalFileContent).
|
|
Commit("original").
|
|
NewBranch("first-change-branch").
|
|
UpdateFileAndAdd("file", FirstChangeFileContent).
|
|
Commit("first change").
|
|
Checkout("original-branch").
|
|
NewBranch("second-change-branch").
|
|
UpdateFileAndAdd("file", SecondChangeFileContent).
|
|
Commit("second change").
|
|
EmptyCommit("second-change-branch unrelated change").
|
|
Checkout("first-change-branch")
|
|
}
|
|
|
|
var CreateMergeConflictFile = func(shell *Shell) {
|
|
MergeConflictsSetup(shell)
|
|
|
|
shell.RunShellCommandExpectError("git merge --no-edit second-change-branch")
|
|
}
|
|
|
|
var CreateMergeCommit = func(shell *Shell) {
|
|
CreateMergeConflictFile(shell)
|
|
shell.UpdateFileAndAdd("file", SecondChangeFileContent)
|
|
shell.ContinueMerge()
|
|
}
|
|
|
|
// These 'multiple' variants are just like the short ones but with longer file contents and with multiple conflicts within the file.
|
|
|
|
var OriginalFileContentMultiple = `
|
|
This
|
|
Is
|
|
The
|
|
Original
|
|
File
|
|
..
|
|
It
|
|
Is
|
|
Longer
|
|
Than
|
|
The
|
|
Other
|
|
Options
|
|
`
|
|
|
|
var FirstChangeFileContentMultiple = `
|
|
This
|
|
Is
|
|
The
|
|
First Change
|
|
File
|
|
..
|
|
It
|
|
Is
|
|
Longer
|
|
Than
|
|
The
|
|
Other
|
|
Other First Change
|
|
`
|
|
|
|
var SecondChangeFileContentMultiple = `
|
|
This
|
|
Is
|
|
The
|
|
Second Change
|
|
File
|
|
..
|
|
It
|
|
Is
|
|
Longer
|
|
Than
|
|
The
|
|
Other
|
|
Other Second Change
|
|
`
|
|
|
|
// prepares us for a rebase/merge that has conflicts
|
|
var MergeConflictsSetupMultiple = func(shell *Shell) {
|
|
shell.
|
|
NewBranch("original-branch").
|
|
EmptyCommit("one").
|
|
EmptyCommit("two").
|
|
EmptyCommit("three").
|
|
CreateFileAndAdd("file", OriginalFileContentMultiple).
|
|
Commit("original").
|
|
NewBranch("first-change-branch").
|
|
UpdateFileAndAdd("file", FirstChangeFileContentMultiple).
|
|
Commit("first change").
|
|
Checkout("original-branch").
|
|
NewBranch("second-change-branch").
|
|
UpdateFileAndAdd("file", SecondChangeFileContentMultiple).
|
|
Commit("second change").
|
|
EmptyCommit("second-change-branch unrelated change").
|
|
Checkout("first-change-branch")
|
|
}
|
|
|
|
var CreateMergeConflictFileMultiple = func(shell *Shell) {
|
|
MergeConflictsSetupMultiple(shell)
|
|
|
|
shell.RunShellCommandExpectError("git merge --no-edit second-change-branch")
|
|
}
|
|
|
|
var CreateMergeCommitMultiple = func(shell *Shell) {
|
|
CreateMergeConflictFileMultiple(shell)
|
|
shell.UpdateFileAndAdd("file", SecondChangeFileContentMultiple)
|
|
shell.ContinueMerge()
|
|
}
|