Name returns the full name of v.
()
| 323 | |
| 324 | // Name returns the full name of v. |
| 325 | func (v *Reference) Name() string { |
| 326 | ret := C.GoString(C.git_reference_name(v.ptr)) |
| 327 | runtime.KeepAlive(v) |
| 328 | return ret |
| 329 | } |
| 330 | |
| 331 | func (v *Reference) Type() ReferenceType { |
| 332 | ret := ReferenceType(C.git_reference_type(v.ptr)) |
nothing calls this directly
no outgoing calls
no test coverage detected