()
| 335 | } |
| 336 | |
| 337 | func (v *Reference) IsBranch() bool { |
| 338 | ret := C.git_reference_is_branch(v.ptr) == 1 |
| 339 | runtime.KeepAlive(v) |
| 340 | return ret |
| 341 | } |
| 342 | |
| 343 | func (v *Reference) IsRemote() bool { |
| 344 | ret := C.git_reference_is_remote(v.ptr) == 1 |
nothing calls this directly
no outgoing calls
no test coverage detected