mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 07:36:27 -04:00
Merge bf586ff0c6 into d0ede21e9c
This commit is contained in:
commit
1cf93403b9
|
|
@ -114,13 +114,13 @@ func (self *CustomPatchOptionsMenuAction) Call() error {
|
||||||
return self.c.Menu(types.CreateMenuOptions{Title: self.c.Tr.PatchOptionsTitle, Items: menuItems})
|
return self.c.Menu(types.CreateMenuOptions{Title: self.c.Tr.PatchOptionsTitle, Items: menuItems})
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *CustomPatchOptionsMenuAction) getPatchCommitIndex() int {
|
func (self *CustomPatchOptionsMenuAction) getPatchCommitIndex() (int, error) {
|
||||||
for index, commit := range self.c.Model().Commits {
|
for index, commit := range self.c.Model().Commits {
|
||||||
if commit.Hash() == self.c.Git().Patch.PatchBuilder.To {
|
if commit.Hash() == self.c.Git().Patch.PatchBuilder.To {
|
||||||
return index
|
return index, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return -1
|
return -1, errors.New(self.c.Tr.PatchCommitNotInCommitsErr)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *CustomPatchOptionsMenuAction) returnFocusFromPatchExplorerIfNecessary() {
|
func (self *CustomPatchOptionsMenuAction) returnFocusFromPatchExplorerIfNecessary() {
|
||||||
|
|
@ -133,7 +133,10 @@ func (self *CustomPatchOptionsMenuAction) handleDeletePatchFromCommit() error {
|
||||||
self.returnFocusFromPatchExplorerIfNecessary()
|
self.returnFocusFromPatchExplorerIfNecessary()
|
||||||
|
|
||||||
commits := self.c.Model().Commits
|
commits := self.c.Model().Commits
|
||||||
commitIndex := self.getPatchCommitIndex()
|
commitIndex, err := self.getPatchCommitIndex()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
||||||
self.c.LogAction(self.c.Tr.Actions.RemovePatchFromCommit)
|
self.c.LogAction(self.c.Tr.Actions.RemovePatchFromCommit)
|
||||||
err := self.c.Git().Patch.DeletePatchesFromCommit(commits, commitIndex)
|
err := self.c.Git().Patch.DeletePatchesFromCommit(commits, commitIndex)
|
||||||
|
|
@ -145,7 +148,10 @@ func (self *CustomPatchOptionsMenuAction) handleMovePatchToSelectedCommit() erro
|
||||||
self.returnFocusFromPatchExplorerIfNecessary()
|
self.returnFocusFromPatchExplorerIfNecessary()
|
||||||
|
|
||||||
commits := self.c.Model().Commits
|
commits := self.c.Model().Commits
|
||||||
commitIndex := self.getPatchCommitIndex()
|
commitIndex, err := self.getPatchCommitIndex()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
toCommitIndex := self.c.Contexts().LocalCommits.GetSelectedLineIdx()
|
toCommitIndex := self.c.Contexts().LocalCommits.GetSelectedLineIdx()
|
||||||
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
||||||
self.c.LogAction(self.c.Tr.Actions.MovePatchToSelectedCommit)
|
self.c.LogAction(self.c.Tr.Actions.MovePatchToSelectedCommit)
|
||||||
|
|
@ -163,7 +169,10 @@ func (self *CustomPatchOptionsMenuAction) handleMovePatchIntoWorkingTree() error
|
||||||
Prompt: self.c.Tr.MustStashWarning,
|
Prompt: self.c.Tr.MustStashWarning,
|
||||||
HandleConfirm: func() error {
|
HandleConfirm: func() error {
|
||||||
commits := self.c.Model().Commits
|
commits := self.c.Model().Commits
|
||||||
commitIndex := self.getPatchCommitIndex()
|
commitIndex, err := self.getPatchCommitIndex()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
return self.c.WithWaitingStatus(self.c.Tr.RebasingStatus, func(gocui.Task) error {
|
||||||
self.c.LogAction(self.c.Tr.Actions.MovePatchIntoIndex)
|
self.c.LogAction(self.c.Tr.Actions.MovePatchIntoIndex)
|
||||||
err := self.c.Git().Patch.MovePatchIntoIndex(commits, commitIndex, mustStash)
|
err := self.c.Git().Patch.MovePatchIntoIndex(commits, commitIndex, mustStash)
|
||||||
|
|
@ -176,7 +185,10 @@ func (self *CustomPatchOptionsMenuAction) handleMovePatchIntoWorkingTree() error
|
||||||
func (self *CustomPatchOptionsMenuAction) handlePullPatchIntoNewCommit() error {
|
func (self *CustomPatchOptionsMenuAction) handlePullPatchIntoNewCommit() error {
|
||||||
self.returnFocusFromPatchExplorerIfNecessary()
|
self.returnFocusFromPatchExplorerIfNecessary()
|
||||||
|
|
||||||
commitIndex := self.getPatchCommitIndex()
|
commitIndex, err := self.getPatchCommitIndex()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
self.c.Helpers().Commits.OpenCommitMessagePanel(
|
self.c.Helpers().Commits.OpenCommitMessagePanel(
|
||||||
&helpers.OpenCommitMessagePanelOpts{
|
&helpers.OpenCommitMessagePanelOpts{
|
||||||
// Pass a commit index of one less than the moved-from commit, so that
|
// Pass a commit index of one less than the moved-from commit, so that
|
||||||
|
|
@ -211,7 +223,10 @@ func (self *CustomPatchOptionsMenuAction) handlePullPatchIntoNewCommit() error {
|
||||||
func (self *CustomPatchOptionsMenuAction) handlePullPatchIntoNewCommitBefore() error {
|
func (self *CustomPatchOptionsMenuAction) handlePullPatchIntoNewCommitBefore() error {
|
||||||
self.returnFocusFromPatchExplorerIfNecessary()
|
self.returnFocusFromPatchExplorerIfNecessary()
|
||||||
|
|
||||||
commitIndex := self.getPatchCommitIndex()
|
commitIndex, err := self.getPatchCommitIndex()
|
||||||
|
if err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
self.c.Helpers().Commits.OpenCommitMessagePanel(
|
self.c.Helpers().Commits.OpenCommitMessagePanel(
|
||||||
&helpers.OpenCommitMessagePanelOpts{
|
&helpers.OpenCommitMessagePanelOpts{
|
||||||
// Pass a commit index of one less than the moved-from commit, so that
|
// Pass a commit index of one less than the moved-from commit, so that
|
||||||
|
|
|
||||||
|
|
@ -474,6 +474,7 @@ type TranslationSet struct {
|
||||||
AutoStashForCheckout string
|
AutoStashForCheckout string
|
||||||
AutoStashForNewBranch string
|
AutoStashForNewBranch string
|
||||||
AutoStashForMovingPatchToIndex string
|
AutoStashForMovingPatchToIndex string
|
||||||
|
PatchCommitNotInCommitsErr string
|
||||||
AutoStashForCherryPicking string
|
AutoStashForCherryPicking string
|
||||||
AutoStashForReverting string
|
AutoStashForReverting string
|
||||||
Discard string
|
Discard string
|
||||||
|
|
@ -1638,6 +1639,7 @@ func EnglishTranslationSet() *TranslationSet {
|
||||||
AutoStashForCheckout: "Auto-stashing changes for checking out %s",
|
AutoStashForCheckout: "Auto-stashing changes for checking out %s",
|
||||||
AutoStashForNewBranch: "Auto-stashing changes for creating new branch %s",
|
AutoStashForNewBranch: "Auto-stashing changes for creating new branch %s",
|
||||||
AutoStashForMovingPatchToIndex: "Auto-stashing changes for moving custom patch to index from %s",
|
AutoStashForMovingPatchToIndex: "Auto-stashing changes for moving custom patch to index from %s",
|
||||||
|
PatchCommitNotInCommitsErr: "Cannot find the commit this custom patch was created from in the current commits list. This can happen after switching branches; recreate the patch to continue.",
|
||||||
AutoStashForCherryPicking: "Auto-stashing changes for cherry-picking commits",
|
AutoStashForCherryPicking: "Auto-stashing changes for cherry-picking commits",
|
||||||
AutoStashForReverting: "Auto-stashing changes for reverting commits",
|
AutoStashForReverting: "Auto-stashing changes for reverting commits",
|
||||||
Discard: "Discard",
|
Discard: "Discard",
|
||||||
|
|
|
||||||
|
|
@ -0,0 +1,58 @@
|
||||||
|
package patch_building
|
||||||
|
|
||||||
|
import (
|
||||||
|
"github.com/jesseduffield/lazygit/pkg/config"
|
||||||
|
. "github.com/jesseduffield/lazygit/pkg/integration/components"
|
||||||
|
)
|
||||||
|
|
||||||
|
var MoveToIndexWhenCommitNotInCurrentBranch = NewIntegrationTest(NewIntegrationTestArgs{
|
||||||
|
Description: "Move a patch into the index after checking out a branch that doesn't contain the patch's commit; expect a friendly error rather than a crash",
|
||||||
|
ExtraCmdArgs: []string{},
|
||||||
|
Skip: false,
|
||||||
|
SetupConfig: func(config *config.AppConfig) {},
|
||||||
|
SetupRepo: func(shell *Shell) {
|
||||||
|
shell.EmptyCommit("base commit")
|
||||||
|
shell.NewBranch("feature")
|
||||||
|
shell.CreateFileAndAdd("file1", "file1 content\n")
|
||||||
|
shell.Commit("feature commit")
|
||||||
|
},
|
||||||
|
Run: func(t *TestDriver, keys config.KeybindingConfig) {
|
||||||
|
// Build a custom patch from a commit that only exists on the feature branch
|
||||||
|
t.Views().Commits().
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("feature commit").IsSelected(),
|
||||||
|
Contains("base commit"),
|
||||||
|
).
|
||||||
|
PressEnter()
|
||||||
|
|
||||||
|
t.Views().CommitFiles().
|
||||||
|
IsFocused().
|
||||||
|
PressPrimaryAction()
|
||||||
|
|
||||||
|
t.Views().Information().Content(Contains("Building patch"))
|
||||||
|
|
||||||
|
// Check out a branch that does not contain the patch's commit, so the
|
||||||
|
// commit the patch was built from is no longer in the commits list.
|
||||||
|
t.Views().Branches().
|
||||||
|
Focus().
|
||||||
|
NavigateToLine(Contains("master")).
|
||||||
|
PressPrimaryAction()
|
||||||
|
|
||||||
|
t.Views().Commits().
|
||||||
|
Focus().
|
||||||
|
Lines(
|
||||||
|
Contains("base commit").IsSelected(),
|
||||||
|
)
|
||||||
|
|
||||||
|
// Previously this panicked with "index out of range [-1]" because the
|
||||||
|
// patch's commit could not be found in the current commits list. It
|
||||||
|
// should now report a friendly error instead.
|
||||||
|
t.Common().SelectPatchOption(Contains("Move patch out into index"))
|
||||||
|
|
||||||
|
t.ExpectPopup().Alert().
|
||||||
|
Title(Equals("Error")).
|
||||||
|
Content(Contains("Cannot find the commit this custom patch was created from")).
|
||||||
|
Confirm()
|
||||||
|
},
|
||||||
|
})
|
||||||
|
|
@ -382,6 +382,7 @@ var tests = []*components.IntegrationTest{
|
||||||
patch_building.MoveToIndexFromAddedFileWithConflict,
|
patch_building.MoveToIndexFromAddedFileWithConflict,
|
||||||
patch_building.MoveToIndexPartOfAdjacentAddedLines,
|
patch_building.MoveToIndexPartOfAdjacentAddedLines,
|
||||||
patch_building.MoveToIndexPartial,
|
patch_building.MoveToIndexPartial,
|
||||||
|
patch_building.MoveToIndexWhenCommitNotInCurrentBranch,
|
||||||
patch_building.MoveToIndexWithConflict,
|
patch_building.MoveToIndexWithConflict,
|
||||||
patch_building.MoveToIndexWithModifiedFile,
|
patch_building.MoveToIndexWithModifiedFile,
|
||||||
patch_building.MoveToIndexWorksEvenIfNoprefixIsSet,
|
patch_building.MoveToIndexWorksEvenIfNoprefixIsSet,
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue