Blame checkout.h

Packit 4511e4
#ifndef CHECKOUT_H
Packit 4511e4
#define CHECKOUT_H
Packit 4511e4
Packit 4511e4
#include "cache.h"
Packit 4511e4
Packit 4511e4
/*
Packit 4511e4
 * Check if the branch name uniquely matches a branch name on a remote
Packit 4511e4
 * tracking branch.  Return the name of the remote if such a branch
Packit 4511e4
 * exists, NULL otherwise.
Packit 4511e4
 */
Packit Service b5fd21
const char *unique_tracking_name(const char *name,
Packit Service b5fd21
				 struct object_id *oid,
Packit Service b5fd21
				 int *dwim_remotes_matched);
Packit 4511e4
Packit 4511e4
#endif /* CHECKOUT_H */