Reference is a representation of git reference
| 221 | |
| 222 | // Reference is a representation of git reference |
| 223 | type Reference struct { |
| 224 | t ReferenceType |
| 225 | n ReferenceName |
| 226 | h Hash |
| 227 | target ReferenceName |
| 228 | } |
| 229 | |
| 230 | // NewReferenceFromStrings creates a reference from name and target as string, |
| 231 | // the resulting reference can be a SymbolicReference or a HashReference base |
nothing calls this directly
no outgoing calls
no test coverage detected