summaryrefslogtreecommitdiffstats
path: root/pkg/gui/branches_panel.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/gui/branches_panel.go')
-rw-r--r--pkg/gui/branches_panel.go50
1 files changed, 37 insertions, 13 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 5024e2b9d..8ee1b451d 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -121,15 +121,7 @@ func (gui *Gui) handleBranchPress(g *gocui.Gui, v *gocui.View) error {
return gui.createErrorPanel(g, gui.Tr.SLocalize("AlreadyCheckedOutBranch"))
}
branch := gui.getSelectedBranch()
- if err := gui.GitCommand.Checkout(branch.Name, false); err != nil {
- if err := gui.createErrorPanel(g, err.Error()); err != nil {
- return err
- }
- } else {
- gui.State.Panels.Branches.SelectedLine = 0
- }
-
- return gui.refreshSidePanels(g)
+ return gui.handleCheckoutBranch(branch.Name)
}
func (gui *Gui) handleCreatePullRequestPress(g *gocui.Gui, v *gocui.View) error {
@@ -166,12 +158,44 @@ func (gui *Gui) handleForceCheckout(g *gocui.Gui, v *gocui.View) error {
}, nil)
}
+func (gui *Gui) handleCheckoutBranch(branchName string) error {
+ if err := gui.GitCommand.Checkout(branchName, false); err != nil {
+ // note, this will only work for english-language git commands. If we force git to use english, and the error isn't this one, then the user will receive an english command they may not understand. I'm not sure what the best solution to this is. Running the command once in english and a second time in the native language is one option
+ if !strings.Contains(err.Error(), "Please commit your changes or stash them before you switch branch") {
+ if err := gui.createErrorPanel(gui.g, err.Error()); err != nil {
+ return err
+ }
+ }
+
+ // offer to autostash changes
+ return gui.createConfirmationPanel(gui.g, gui.getBranchesView(), gui.Tr.SLocalize("AutoStashTitle"), gui.Tr.SLocalize("AutoStashPrompt"), func(g *gocui.Gui, v *gocui.View) error {
+ if err := gui.GitCommand.StashSave(gui.Tr.SLocalize("StashPrefix") + branchName); err != nil {
+ return gui.createErrorPanel(g, err.Error())
+ }
+ if err := gui.GitCommand.Checkout(branchName, false); err != nil {
+ return gui.createErrorPanel(g, err.Error())
+ }
+
+ // checkout successful so we select the new branch
+ gui.State.Panels.Branches.SelectedLine = 0
+
+ if err := gui.GitCommand.StashDo(0, "pop"); err != nil {
+ if err := gui.refreshSidePanels(g); err != nil {
+ return err
+ }
+ return gui.createErrorPanel(g, err.Error())
+ }
+ return gui.refreshSidePanels(g)
+ }, nil)
+ }
+
+ gui.State.Panels.Branches.SelectedLine = 0
+ return gui.refreshSidePanels(gui.g)
+}
+
func (gui *Gui) handleCheckoutByName(g *gocui.Gui, v *gocui.View) error {
gui.createPromptPanel(g, v, gui.Tr.SLocalize("BranchName")+":", func(g *gocui.Gui, v *gocui.View) error {
- if err := gui.GitCommand.Checkout(gui.trimmedContent(v), false); err != nil {
- return gui.createErrorPanel(g, err.Error())
- }
- return gui.refreshSidePanels(g)
+ return gui.handleCheckoutBranch(gui.trimmedContent(v))
})
return nil
}