1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-03-03 15:02:52 +02:00

114 lines
3.8 KiB
Go
Raw Normal View History

2022-01-08 14:00:36 +11:00
package git_commands
2020-09-29 20:03:39 +10:00
import (
"fmt"
"strings"
"github.com/jesseduffield/lazygit/pkg/commands/oscommands"
)
2022-01-02 10:34:33 +11:00
type CommitCommands struct {
*GitCommon
2022-01-02 10:34:33 +11:00
}
func NewCommitCommands(gitCommon *GitCommon) *CommitCommands {
2022-01-02 10:34:33 +11:00
return &CommitCommands{
GitCommon: gitCommon,
2022-01-02 10:34:33 +11:00
}
}
2022-01-09 13:36:07 +11:00
// RewordLastCommit rewords the topmost commit with the given message
func (self *CommitCommands) RewordLastCommit(message string) error {
return self.cmd.New("git commit --allow-empty --amend --only -m " + self.cmd.Quote(message)).Run()
2020-09-29 20:03:39 +10:00
}
// ResetToCommit reset to commit
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) ResetToCommit(sha string, strength string, envVars []string) error {
return self.cmd.New(fmt.Sprintf("git reset --%s %s", strength, sha)).
2021-12-07 21:59:36 +11:00
// prevents git from prompting us for input which would freeze the program
// TODO: see if this is actually needed here
AddEnvVars("GIT_TERMINAL_PROMPT=0").
2021-12-29 14:33:38 +11:00
AddEnvVars(envVars...).
Run()
2020-09-29 20:03:39 +10:00
}
func (self *CommitCommands) CommitCmdObj(message string) oscommands.ICmdObj {
splitMessage := strings.Split(message, "\n")
lineArgs := ""
for _, line := range splitMessage {
2022-01-02 10:34:33 +11:00
lineArgs += fmt.Sprintf(" -m %s", self.cmd.Quote(line))
}
skipHookPrefix := self.UserConfig.Git.SkipHookPrefix
noVerifyFlag := ""
if skipHookPrefix != "" && strings.HasPrefix(message, skipHookPrefix) {
noVerifyFlag = " --no-verify"
2020-09-29 20:03:39 +10:00
}
return self.cmd.New(fmt.Sprintf("git commit%s%s%s", noVerifyFlag, self.signoffFlag(), lineArgs))
}
// runs git commit without the -m argument meaning it will invoke the user's editor
func (self *CommitCommands) CommitEditorCmdObj() oscommands.ICmdObj {
return self.cmd.New(fmt.Sprintf("git commit%s", self.signoffFlag()))
}
func (self *CommitCommands) signoffFlag() string {
if self.UserConfig.Git.Commit.SignOff {
return " --signoff"
} else {
return ""
}
2020-09-29 20:03:39 +10:00
}
// Get the subject of the HEAD commit
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) GetHeadCommitMessage() (string, error) {
message, err := self.cmd.New("git log -1 --pretty=%s").DontLog().RunWithOutput()
2020-09-29 20:03:39 +10:00
return strings.TrimSpace(message), err
}
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) GetCommitMessage(commitSha string) (string, error) {
2020-09-29 20:03:39 +10:00
cmdStr := "git rev-list --format=%B --max-count=1 " + commitSha
2022-01-02 10:34:33 +11:00
messageWithHeader, err := self.cmd.New(cmdStr).DontLog().RunWithOutput()
2020-09-29 20:03:39 +10:00
message := strings.Join(strings.SplitAfter(messageWithHeader, "\n")[1:], "\n")
return strings.TrimSpace(message), err
}
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) GetCommitMessageFirstLine(sha string) (string, error) {
return self.cmd.New(fmt.Sprintf("git show --no-patch --pretty=format:%%s %s", sha)).DontLog().RunWithOutput()
2021-06-05 16:39:59 +10:00
}
2020-09-29 20:03:39 +10:00
// AmendHead amends HEAD with whatever is staged in your working tree
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) AmendHead() error {
return self.AmendHeadCmdObj().Run()
2021-04-10 11:40:42 +10:00
}
2020-09-29 20:03:39 +10:00
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) AmendHeadCmdObj() oscommands.ICmdObj {
return self.cmd.New("git commit --amend --no-edit --allow-empty")
2020-09-29 20:03:39 +10:00
}
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) ShowCmdObj(sha string, filterPath string) oscommands.ICmdObj {
contextSize := self.UserConfig.Git.DiffContextSize
2020-09-29 20:03:39 +10:00
filterPathArg := ""
if filterPath != "" {
2022-01-02 10:34:33 +11:00
filterPathArg = fmt.Sprintf(" -- %s", self.cmd.Quote(filterPath))
2020-09-29 20:03:39 +10:00
}
2021-12-07 21:59:36 +11:00
2022-01-02 10:34:33 +11:00
cmdStr := fmt.Sprintf("git show --submodule --color=%s --unified=%d --no-renames --stat -p %s %s", self.UserConfig.Git.Paging.ColorArg, contextSize, sha, filterPathArg)
return self.cmd.New(cmdStr).DontLog()
2020-09-29 20:03:39 +10:00
}
// Revert reverts the selected commit by sha
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) Revert(sha string) error {
return self.cmd.New(fmt.Sprintf("git revert %s", sha)).Run()
2020-09-29 20:03:39 +10:00
}
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) RevertMerge(sha string, parentNumber int) error {
return self.cmd.New(fmt.Sprintf("git revert %s -m %d", sha, parentNumber)).Run()
2020-09-29 20:03:39 +10:00
}
// CreateFixupCommit creates a commit that fixes up a previous commit
2022-01-02 10:34:33 +11:00
func (self *CommitCommands) CreateFixupCommit(sha string) error {
return self.cmd.New(fmt.Sprintf("git commit --fixup=%s", sha)).Run()
2020-09-29 20:03:39 +10:00
}