| 499 | } |
| 500 | |
| 501 | static int validate_remote_tracking_branch(char *ref) |
| 502 | { |
| 503 | return !for_each_remote(check_tracking_branch, ref); |
| 504 | } |
| 505 | |
| 506 | static const char upstream_not_branch[] = |
| 507 | N_("cannot set up tracking information; starting point '%s' is not a branch"); |
no test coverage detected