https://github.com/git/git
Revision 68559c464a8d22d4c3cc0a258fb4317125ddd099 authored by Junio C Hamano on 22 March 2018, 21:24:19 UTC, committed by Junio C Hamano on 22 March 2018, 21:24:20 UTC
Devdoc update.

* sg/doc-test-must-fail-args:
  t: document 'test_must_fail ok=<signal-name>'
2 parent s 67b7dd3 + 12e31a6
Raw File
Tip revision: 68559c464a8d22d4c3cc0a258fb4317125ddd099 authored by Junio C Hamano on 22 March 2018, 21:24:19 UTC
Merge branch 'sg/doc-test-must-fail-args' into maint
Tip revision: 68559c4
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