summaryrefslogtreecommitdiffstats
path: root/pkg/gui/branches_panel.go
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2019-07-14 14:31:19 +1000
committerJesse Duffield <jessedduffield@gmail.com>2019-07-14 14:31:48 +1000
commit75db4faf69f5eaf130fe18ec4444a3086e4aef22 (patch)
tree6743ba5f848b1d8627e182d350cc3ff468794604 /pkg/gui/branches_panel.go
parente1f5601d4b7d77a9918e7f445c7fc58f3c441969 (diff)
show actual error when trying to check out a branch that doesn't exist
Diffstat (limited to 'pkg/gui/branches_panel.go')
-rw-r--r--pkg/gui/branches_panel.go45
1 files changed, 23 insertions, 22 deletions
diff --git a/pkg/gui/branches_panel.go b/pkg/gui/branches_panel.go
index 4ce53bebd..f79dce905 100644
--- a/pkg/gui/branches_panel.go
+++ b/pkg/gui/branches_panel.go
@@ -161,32 +161,33 @@ func (gui *Gui) handleForceCheckout(g *gocui.Gui, v *gocui.View) error {
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())
- }
+ if strings.Contains(err.Error(), "Please commit your changes or stash them before you switch branch") {
+ // 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
+ // 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
+ 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.createErrorPanel(g, err.Error())
- }
- return gui.refreshSidePanels(g)
- }, nil)
+ return gui.refreshSidePanels(g)
+ }, nil)
+ }
+
+ if err := gui.createErrorPanel(gui.g, err.Error()); err != nil {
+ return err
+ }
}
gui.State.Panels.Branches.SelectedLine = 0