| 2047 | } |
| 2048 | |
| 2049 | struct ref *get_remote_ref(const struct ref *remote_refs, const char *name) |
| 2050 | { |
| 2051 | const struct ref *ref = find_ref_by_name_abbrev(remote_refs, name); |
| 2052 | |
| 2053 | if (!ref) |
| 2054 | return NULL; |
| 2055 | |
| 2056 | return copy_ref(ref); |
| 2057 | } |
| 2058 | |
| 2059 | static struct ref *get_local_ref(const char *name) |
| 2060 | { |
no test coverage detected