| 706 | } |
| 707 | |
| 708 | const char *pushremote_for_branch(struct branch *branch, int *explicit) |
| 709 | { |
| 710 | read_config(the_repository, 0); |
| 711 | die_on_missing_branch(the_repository, branch); |
| 712 | |
| 713 | return remotes_pushremote_for_branch(the_repository->remote_state, |
| 714 | branch, explicit); |
| 715 | } |
| 716 | |
| 717 | static struct remote *remotes_remote_get(struct repository *repo, |
| 718 | const char *name); |
no test coverage detected