| 73 | } |
| 74 | |
| 75 | static void add_url(struct remote *remote, const char *url) |
| 76 | { |
| 77 | if (*url) |
| 78 | strvec_push(&remote->url, url); |
| 79 | else |
| 80 | strvec_clear(&remote->url); |
| 81 | } |
| 82 | |
| 83 | static void add_pushurl(struct remote *remote, const char *pushurl) |
| 84 | { |
no test coverage detected