mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
94 lines
2.1 KiB
Go
94 lines
2.1 KiB
Go
package gui
|
|
|
|
import (
|
|
"github.com/fatih/color"
|
|
"github.com/jesseduffield/gocui"
|
|
)
|
|
|
|
func (gui *Gui) handleCreateResetMenu(g *gocui.Gui, v *gocui.View) error {
|
|
red := color.New(color.FgRed)
|
|
|
|
menuItems := []*menuItem{
|
|
{
|
|
displayStrings: []string{
|
|
gui.Tr.SLocalize("discardAllChangesToAllFiles"),
|
|
red.Sprint("reset --hard HEAD && git clean -fd"),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.ResetAndClean(); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
{
|
|
displayStrings: []string{
|
|
gui.Tr.SLocalize("discardAnyUnstagedChanges"),
|
|
red.Sprint("git checkout -- ."),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.DiscardAnyUnstagedFileChanges(); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
{
|
|
displayStrings: []string{
|
|
gui.Tr.SLocalize("discardUntrackedFiles"),
|
|
red.Sprint("git clean -fd"),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.RemoveUntrackedFiles(); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
{
|
|
displayStrings: []string{
|
|
gui.Tr.SLocalize("softReset"),
|
|
red.Sprint("git reset --soft HEAD"),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.ResetSoft("HEAD"); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
{
|
|
displayStrings: []string{
|
|
"mixed reset",
|
|
red.Sprint("git reset --mixed HEAD"),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.ResetSoft("HEAD"); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
{
|
|
displayStrings: []string{
|
|
gui.Tr.SLocalize("hardReset"),
|
|
red.Sprint("git reset --hard HEAD"),
|
|
},
|
|
onPress: func() error {
|
|
if err := gui.GitCommand.ResetHard("HEAD"); err != nil {
|
|
return gui.createErrorPanel(gui.g, err.Error())
|
|
}
|
|
|
|
return gui.refreshFiles()
|
|
},
|
|
},
|
|
}
|
|
|
|
return gui.createMenu("", menuItems, createMenuOptions{showCancel: true})
|
|
}
|