0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-11-09 17:10:41 +00:00
wp-git-action/git/commit.go

67 lines
1.1 KiB
Go
Raw Normal View History

2022-11-27 13:33:39 +00:00
package git
2019-06-07 10:32:16 +00:00
import (
2024-05-06 20:43:56 +00:00
"io"
"github.com/thegeeklab/wp-plugin-go/v2/types"
"golang.org/x/sys/execabs"
2019-06-07 10:32:16 +00:00
)
// Add updates the index to match the working tree.
2024-05-06 18:29:57 +00:00
func (r *Repository) Add() *types.Cmd {
2024-05-06 20:43:56 +00:00
cmd := &types.Cmd{
Cmd: execabs.Command(
gitBin,
"add",
"--all",
),
}
2024-05-06 18:29:57 +00:00
cmd.Dir = r.WorkDir
2019-06-07 10:32:16 +00:00
2024-05-06 20:43:56 +00:00
return cmd
2019-06-07 10:32:16 +00:00
}
// IsCleanTree returns non-zero if diff between index and local repository.
2024-05-06 18:29:57 +00:00
func (r *Repository) IsCleanTree() *types.Cmd {
args := []string{
"diff-index",
"--quiet",
"HEAD",
"--ignore-submodules",
2024-05-06 20:43:56 +00:00
}
cmd := &types.Cmd{
Cmd: execabs.Command(gitBin, args...),
}
2024-05-06 18:29:57 +00:00
cmd.Dir = r.WorkDir
2024-05-06 20:43:56 +00:00
cmd.Stdout = io.Discard
cmd.Stderr = io.Discard
cmd.SetTrace(false)
2019-06-07 10:32:16 +00:00
2024-05-06 20:43:56 +00:00
return cmd
2019-06-07 10:32:16 +00:00
}
2024-05-06 18:29:57 +00:00
// Commit creates a new commit with the specified commit message.
func (r *Repository) Commit() *types.Cmd {
args := []string{
2019-06-07 10:32:16 +00:00
"commit",
"-m",
2024-05-06 18:29:57 +00:00
r.CommitMsg,
}
2024-05-06 18:29:57 +00:00
if r.EmptyCommit {
args = append(args, "--allow-empty")
2019-06-07 10:32:16 +00:00
}
2024-05-06 18:29:57 +00:00
if r.NoVerify {
args = append(args, "--no-verify")
}
2024-05-06 20:43:56 +00:00
cmd := &types.Cmd{
Cmd: execabs.Command(gitBin, args...),
}
2024-05-06 18:29:57 +00:00
cmd.Dir = r.WorkDir
2019-06-07 10:32:16 +00:00
2024-05-06 20:43:56 +00:00
return cmd
2019-06-07 10:32:16 +00:00
}