1#ifndef CHECKOUT_H2#define CHECKOUT_H34#include "cache.h"56/*7* Check if the branch name uniquely matches a branch name on a remote8* tracking branch. Return the name of the remote if such a branch9* exists, NULL otherwise.10*/11extern const char *unique_tracking_name(const char *name,12struct object_id *oid,13int *dwim_remotes_matched);1415#endif /* CHECKOUT_H */