blob: 998071117952de27f2ec0c16d7b3d49abaa952bc [file] [log] [blame]
Thomas Gummerer7c85a872017-11-26 19:43:51 +00001#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 */
11extern const char *unique_tracking_name(const char *name, struct object_id *oid);
12
13#endif /* CHECKOUT_H */