mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-02 12:10:05 +08:00
98 lines
1.8 KiB
Go
98 lines
1.8 KiB
Go
package utils
|
|
|
|
import (
|
|
"bytes"
|
|
"os/exec"
|
|
)
|
|
|
|
type GIT struct {
|
|
Dir string
|
|
Output bytes.Buffer
|
|
Err bytes.Buffer
|
|
}
|
|
|
|
func (git *GIT) Run(operator string, options ...string) error {
|
|
git.Output.Reset()
|
|
git.Err.Reset()
|
|
cmd := exec.Command("git", append([]string{operator}, options...)...)
|
|
if len(git.Dir) != 0 {
|
|
cmd.Dir = git.Dir
|
|
}
|
|
cmd.Stdout = &git.Output
|
|
cmd.Stderr = &git.Err
|
|
if err := cmd.Run(); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Clone(options ...string) error {
|
|
if err := git.Run("clone", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Checkout(options ...string) error {
|
|
if err := git.Run("checkout", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Add(options ...string) error {
|
|
if err := git.Run("add", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Pull(options ...string) error {
|
|
if err := git.Run("pull", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Fetch(options ...string) error {
|
|
if err := git.Run("fetch", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Log(options ...string) error {
|
|
if err := git.Run("log", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Branch(options ...string) error {
|
|
if err := git.Run("branch", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Current() error {
|
|
if err := git.Run("symbolic-ref", "--short", "HEAD"); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) Reset(options ...string) error {
|
|
if err := git.Run("reset", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (git *GIT) LsRemote(options ...string) error {
|
|
if err := git.Run("ls-remote", options...); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|