-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make auto-staging resolved conflicts optional (#3870)
- **PR Description** Add user config `git.autoStageResolvedConflicts` (default true). When set to false, users need to stage their conflicted files manually after resolving conflicts, and also continue a merge/rebase manually when all conflicted files are resolved. Fixes #3111.
- Loading branch information
Showing
7 changed files
with
135 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package conflicts | ||
|
||
import ( | ||
"github.com/jesseduffield/lazygit/pkg/config" | ||
. "github.com/jesseduffield/lazygit/pkg/integration/components" | ||
"github.com/jesseduffield/lazygit/pkg/integration/tests/shared" | ||
) | ||
|
||
var ResolveNoAutoStage = NewIntegrationTest(NewIntegrationTestArgs{ | ||
Description: "Resolving conflicts without auto-staging", | ||
ExtraCmdArgs: []string{}, | ||
Skip: false, | ||
SetupConfig: func(config *config.AppConfig) { | ||
config.GetUserConfig().Git.AutoStageResolvedConflicts = false | ||
}, | ||
SetupRepo: func(shell *Shell) { | ||
shared.CreateMergeConflictFiles(shell) | ||
}, | ||
Run: func(t *TestDriver, keys config.KeybindingConfig) { | ||
t.Views().Files(). | ||
IsFocused(). | ||
Lines( | ||
Contains("UU").Contains("file1").IsSelected(), | ||
Contains("UU").Contains("file2"), | ||
). | ||
PressEnter() | ||
|
||
t.Views().MergeConflicts(). | ||
IsFocused(). | ||
SelectedLines( | ||
Contains("<<<<<<< HEAD"), | ||
Contains("First Change"), | ||
Contains("======="), | ||
). | ||
PressPrimaryAction() | ||
|
||
t.Views().Files(). | ||
IsFocused(). | ||
// Resolving the conflict didn't auto-stage it | ||
Lines( | ||
Contains("UU").Contains("file1").IsSelected(), | ||
Contains("UU").Contains("file2"), | ||
). | ||
// So do that manually | ||
PressPrimaryAction(). | ||
Lines( | ||
Contains("UU").Contains("file2").IsSelected(), | ||
). | ||
// Trying to stage a file that still has conflicts is not allowed: | ||
PressPrimaryAction(). | ||
Tap(func() { | ||
t.ExpectPopup().Alert(). | ||
Title(Equals("Error")). | ||
Content(Contains("Cannot stage/unstage directory containing files with inline merge conflicts.")). | ||
Confirm() | ||
}). | ||
PressEnter() | ||
|
||
// coincidentally these files have the same conflict | ||
t.Views().MergeConflicts(). | ||
IsFocused(). | ||
SelectedLines( | ||
Contains("<<<<<<< HEAD"), | ||
Contains("First Change"), | ||
Contains("======="), | ||
). | ||
PressPrimaryAction() | ||
|
||
t.Views().Files(). | ||
IsFocused(). | ||
// Again, resolving the conflict didn't auto-stage it | ||
Lines( | ||
Contains("UU").Contains("file2").IsSelected(), | ||
). | ||
// Doing that manually now works: | ||
PressPrimaryAction(). | ||
Lines( | ||
Contains("A").Contains("file3").IsSelected(), | ||
) | ||
}, | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters