()
| 341 | } |
| 342 | |
| 343 | func (v *Reference) IsRemote() bool { |
| 344 | ret := C.git_reference_is_remote(v.ptr) == 1 |
| 345 | runtime.KeepAlive(v) |
| 346 | return ret |
| 347 | } |
| 348 | |
| 349 | func (v *Reference) IsTag() bool { |
| 350 | ret := C.git_reference_is_tag(v.ptr) == 1 |
nothing calls this directly
no outgoing calls
no test coverage detected