| 680 | } |
| 681 | |
| 682 | const char *remote_for_branch(struct branch *branch, int *explicit) |
| 683 | { |
| 684 | read_config(the_repository, 0); |
| 685 | die_on_missing_branch(the_repository, branch); |
| 686 | |
| 687 | return remotes_remote_for_branch(the_repository->remote_state, branch, |
| 688 | explicit); |
| 689 | } |
| 690 | |
| 691 | static const char * |
| 692 | remotes_pushremote_for_branch(struct remote_state *remote_state, |
no test coverage detected