Add support for creating signed commits and signing commits during a rebase #626
|
@ -40,6 +40,7 @@ func (c *Commit) RawMessage() string {
|
||||||
return ret
|
return ret
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// RawHeader gets the full raw text of the commit header.
|
||||||
func (c *Commit) RawHeader() string {
|
func (c *Commit) RawHeader() string {
|
||||||
|
|||||||
ret := C.GoString(C.git_commit_raw_header(c.cast_ptr))
|
ret := C.GoString(C.git_commit_raw_header(c.cast_ptr))
|
||||||
runtime.KeepAlive(c)
|
runtime.KeepAlive(c)
|
||||||
|
|
Loading…
Reference in New Issue
one more thing i forgot, can the public functions have a docstring? most of the contents can be copied from the C docs.
Fixed