Staging
v0.5.1
https://github.com/git/git
Revision 99c33bed562b41de6ce9bd3fd561303d39645048 authored by Junio C Hamano on 25 December 2019, 19:21:28 UTC, committed by Junio C Hamano on 25 December 2019, 19:22:02 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent d2189a7
Raw File
Tip revision: 99c33bed562b41de6ce9bd3fd561303d39645048 authored by Junio C Hamano on 25 December 2019, 19:21:28 UTC
Git 2.25-rc0
Tip revision: 99c33be
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.
 */
const char *unique_tracking_name(const char *name,
				 struct object_id *oid,
				 int *dwim_remotes_matched);

#endif /* CHECKOUT_H */
back to top