Shorthand returns a "human-readable" short reference name.
()
| 316 | |
| 317 | // Shorthand returns a "human-readable" short reference name. |
| 318 | func (v *Reference) Shorthand() string { |
| 319 | ret := C.GoString(C.git_reference_shorthand(v.ptr)) |
| 320 | runtime.KeepAlive(v) |
| 321 | return ret |
| 322 | } |
| 323 | |
| 324 | // Name returns the full name of v. |
| 325 | func (v *Reference) Name() string { |
no outgoing calls