()
| 679 | } |
| 680 | |
| 681 | func (repo *Repository) Path() string { |
| 682 | s := C.GoString(C.git_repository_path(repo.ptr)) |
| 683 | runtime.KeepAlive(repo) |
| 684 | return s |
| 685 | } |
| 686 | |
| 687 | func (repo *Repository) IsBare() bool { |
| 688 | ret := C.git_repository_is_bare(repo.ptr) != 0 |
nothing calls this directly
no outgoing calls
no test coverage detected