blob: 4026e3832b265c4cef6e5bc151976771867b3da9 [file] [log] [blame]
Daniel Barkalowe496c002008-02-07 11:40:08 -05001#ifndef BRANCH_H
2#define BRANCH_H
3
Daniel Barkalowc369e7b2008-02-07 11:40:16 -05004/* Functions for acting on the information about branches. */
5
6/*
7 * Creates a new branch, where head is the branch currently checked
8 * out, name is the new branch name, start_name is the name of the
9 * existing branch that the new branch should start from, force
10 * enables overwriting an existing (non-head) branch, reflog creates a
11 * reflog for the branch, and track causes the new branch to be
12 * configured to merge the remote branch that start_name is a tracking
13 * branch for (if any).
14 */
15void create_branch(const char *head, const char *name, const char *start_name,
Jay Soffian9ed36cf2008-02-19 11:24:37 -050016 int force, int reflog, enum branch_track track);
Daniel Barkalowe496c002008-02-07 11:40:08 -050017
Daniel Barkalowc369e7b2008-02-07 11:40:16 -050018/*
19 * Remove information about the state of working on the current
20 * branch. (E.g., MERGE_HEAD)
21 */
22void remove_branch_state(void);
23
Junio C Hamanoa9f2c132009-03-03 22:29:55 -080024/*
Matthieu Moy13931232010-11-02 16:31:25 +010025 * Configure local branch "local" as downstream to branch "remote"
26 * from remote "origin". Used by git branch --set-upstream.
Junio C Hamanoa9f2c132009-03-03 22:29:55 -080027 */
28#define BRANCH_CONFIG_VERBOSE 01
29extern void install_branch_config(int flag, const char *local, const char *origin, const char *remote);
30
Daniel Barkalowe496c002008-02-07 11:40:08 -050031#endif