| 172 | } |
| 173 | |
| 174 | void refspec_item_clear(struct refspec_item *item) |
| 175 | { |
| 176 | FREE_AND_NULL(item->src); |
| 177 | FREE_AND_NULL(item->dst); |
| 178 | FREE_AND_NULL(item->raw); |
| 179 | item->force = 0; |
| 180 | item->pattern = 0; |
| 181 | item->matching = 0; |
| 182 | item->exact_sha1 = 0; |
| 183 | } |
| 184 | |
| 185 | void refspec_init_fetch(struct refspec *rs) |
| 186 | { |
no outgoing calls
no test coverage detected