https://github.com/git/git
Raw File
Tip revision: da0bf45e8d232f355eab0c95d0ef9b2800b9f2a8 authored by Junio C Hamano on 31 May 2024, 00:33:49 UTC
Sync with 'master'
Tip revision: da0bf45
checkout.h
#ifndef CHECKOUT_H
#define CHECKOUT_H

#include "hash-ll.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.
 */
char *unique_tracking_name(const char *name,
			   struct object_id *oid,
			   int *dwim_remotes_matched);

#endif /* CHECKOUT_H */
back to top