|
|
|
@ -80,11 +80,11 @@ func (c *Git) RemoteURL() (string, error) {
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Git) FullCommit() (string, error) {
|
|
|
|
|
return c.clean(c.run("show", "--format=%H", "HEAD", "--quiet"))
|
|
|
|
|
return c.clean(c.run("show", "--format=%H", "HEAD", "--quiet", "--"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Git) ShortCommit() (string, error) {
|
|
|
|
|
return c.clean(c.run("show", "--format=%h", "HEAD", "--quiet"))
|
|
|
|
|
return c.clean(c.run("show", "--format=%h", "HEAD", "--quiet", "--"))
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
func (c *Git) Tag() (string, error) {
|
|
|
|
|