1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-07-30 03:23:08 +03:00

allow creating branches off of remote branches

This commit is contained in:
Jesse Duffield
2020-05-18 21:04:50 +10:00
parent 04e93317b8
commit 003e45d2f5
2 changed files with 31 additions and 0 deletions

View File

@ -1287,6 +1287,14 @@ func (gui *Gui) GetInitialKeybindings() []*Binding {
Handler: gui.handleCheckoutRemoteBranch,
Description: gui.Tr.SLocalize("checkout"),
},
{
ViewName: "branches",
Contexts: []string{"remote-branches"},
Key: gui.getKey("universal.new"),
Handler: gui.handleNewBranchOffRemote,
Description: gui.Tr.SLocalize("newBranch"),
},
{
ViewName: "branches",
Contexts: []string{"remote-branches"},