DescribeResult represents the output from the 'git_describe_commit' and 'git_describe_workdir' functions in libgit2. Use Format() to get a string out of it.
| 176 | // |
| 177 | // Use Format() to get a string out of it. |
| 178 | type DescribeResult struct { |
| 179 | doNotCompare |
| 180 | ptr *C.git_describe_result |
| 181 | } |
| 182 | |
| 183 | func newDescribeResultFromC(ptr *C.git_describe_result) *DescribeResult { |
| 184 | result := &DescribeResult{ |
nothing calls this directly
no outgoing calls
no test coverage detected