https://github.com/git/git
Raw File
Tip revision: 35ee755a8c43bcb3c2786522d423f006c23d32df authored by Junio C Hamano on 19 February 2019, 21:20:23 UTC
Git 2.21-rc2
Tip revision: 35ee755
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,
					int *dwim_remotes_matched);

#endif /* CHECKOUT_H */
back to top