0
0
mirror of https://github.com/thegeeklab/wp-git-action.git synced 2024-09-20 01:12:47 +02:00
wp-git-action/git/commit.go

71 lines
1.1 KiB
Go
Raw Normal View History

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