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

91 lines
1.5 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 (
"os"
2019-06-07 12:32:16 +02:00
"os/exec"
)
// ForceAdd forces the addition of all dirty files.
func ForceAdd(repo Repository) *exec.Cmd {
2019-06-07 12:32:16 +02:00
cmd := exec.Command(
"git",
"add",
"--all",
"--force",
)
cmd.Dir = repo.WorkDir
cmd.Stderr = os.Stderr
2019-06-07 12:32:16 +02:00
return cmd
}
// Add updates the index to match the working tree.
func Add(repo Repository) *exec.Cmd {
2019-06-07 12:32:16 +02:00
cmd := exec.Command(
"git",
"add",
)
cmd.Dir = repo.WorkDir
cmd.Stderr = os.Stderr
if repo.Add != "" {
cmd.Args = append(cmd.Args, repo.Add)
} else {
cmd.Args = append(cmd.Args, "--all")
}
2019-06-07 12:32:16 +02:00
return cmd
}
// TestCleanTree returns non-zero if diff between index and local repository
func TestCleanTree(repo Repository) *exec.Cmd {
2019-06-07 12:32:16 +02:00
cmd := exec.Command(
"git",
"diff-index",
"--quiet",
"HEAD",
"--ignore-submodules",
)
cmd.Dir = repo.WorkDir
cmd.Stderr = os.Stderr
2019-06-07 12:32:16 +02:00
return cmd
}
// EmptyCommit simply create an empty commit
func EmptyCommit(repo Repository) *exec.Cmd {
2019-06-07 12:32:16 +02:00
cmd := exec.Command(
"git",
"commit",
"--allow-empty",
"-m",
repo.CommitMsg,
2019-06-07 12:32:16 +02:00
)
cmd.Dir = repo.WorkDir
cmd.Stderr = os.Stderr
2019-06-07 12:32:16 +02:00
if repo.NoVerify {
cmd.Args = append(cmd.Args, "--no-verify")
2019-06-07 12:32:16 +02:00
}
return cmd
}
// ForceCommit commits every change while skipping CI.
func ForceCommit(repo Repository) *exec.Cmd {
2019-06-07 12:32:16 +02:00
cmd := exec.Command(
"git",
"commit",
"-m",
repo.CommitMsg,
2019-06-07 12:32:16 +02:00
)
cmd.Dir = repo.WorkDir
cmd.Stderr = os.Stderr
2019-06-07 12:32:16 +02:00
if repo.NoVerify {
cmd.Args = append(cmd.Args, "--no-verify")
2019-06-07 12:32:16 +02:00
}
return cmd
}