Welcome to mirror list, hosted at ThFree Co, Russian Federation.

branch.h - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8bcd9dc217cccbd0a4bf44ba076fa181a932c289 (plain)
1
2
3
4
5
6
7
8
#ifndef BRANCH_H
#define BRANCH_H

void create_branch(const char *head,
		   const char *name, const char *start_name,
		   int force, int reflog, int track);

#endif