1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2024-12-02 09:21:40 +02:00

safer getting of branch

This commit is contained in:
Jesse Duffield 2020-08-23 17:28:28 +10:00
parent ba7e098373
commit 364bdcf532
2 changed files with 10 additions and 1 deletions

View File

@ -423,8 +423,13 @@ func (gui *Gui) handlePullFiles(g *gocui.Gui, v *gocui.View) error {
return nil
}
// if we have no upstream branch we need to set that first
currentBranch := gui.currentBranch()
if currentBranch == nil {
// need to wait for branches to refresh
return nil
}
// if we have no upstream branch we need to set that first
if currentBranch.Pullables == "?" {
// see if we have this branch in our config with an upstream
conf, err := gui.GitCommand.Repo.Config()

View File

@ -67,6 +67,10 @@ func (gui *Gui) handleStatusClick(g *gocui.Gui, v *gocui.View) error {
}
currentBranch := gui.currentBranch()
if currentBranch == nil {
// need to wait for branches to refresh
return nil
}
if err := gui.switchContext(gui.Contexts.Status.Context); err != nil {
return err