https://github.com/git/git
Raw File
Tip revision: 8279ed033f703d4115bee620dccd32a9ec94d9aa authored by Junio C Hamano on 22 January 2018, 05:14:25 UTC
Git 2.16.1
Tip revision: 8279ed0
checkout.h
#ifndef CHECKOUT_H
#define CHECKOUT_H

#include "cache.h"

/*
 * Check if the branch name uniquely matches a branch name on a remote
 * tracking branch.  Return the name of the remote if such a branch
 * exists, NULL otherwise.
 */
extern const char *unique_tracking_name(const char *name, struct object_id *oid);

#endif /* CHECKOUT_H */
back to top