| 854 | } |
| 855 | |
| 856 | int remote_is_configured(struct remote *remote, int in_repo) |
| 857 | { |
| 858 | if (!remote) |
| 859 | return 0; |
| 860 | if (in_repo) |
| 861 | return remote->configured_in_repo; |
| 862 | return !!remote->origin; |
| 863 | } |
| 864 | |
| 865 | int for_each_remote(each_remote_fn fn, void *priv) |
| 866 | { |
no outgoing calls
no test coverage detected