Thomas Gummerer | 7c85a87 | 2017-11-26 19:43:51 +0000 | [diff] [blame] | 1 | #ifndef CHECKOUT_H |
| 2 | #define CHECKOUT_H |
| 3 | |
| 4 | #include "cache.h" |
| 5 | |
| 6 | /* |
| 7 | * Check if the branch name uniquely matches a branch name on a remote |
| 8 | * tracking branch. Return the name of the remote if such a branch |
| 9 | * exists, NULL otherwise. |
| 10 | */ |
Denton Liu | 5545442 | 2019-04-29 04:28:14 -0400 | [diff] [blame] | 11 | const char *unique_tracking_name(const char *name, |
Denton Liu | ad6dad0 | 2019-04-29 04:28:23 -0400 | [diff] [blame] | 12 | struct object_id *oid, |
| 13 | int *dwim_remotes_matched); |
Thomas Gummerer | 7c85a87 | 2017-11-26 19:43:51 +0000 | [diff] [blame] | 14 | |
| 15 | #endif /* CHECKOUT_H */ |