]> git.ipfire.org Git - thirdparty/git.git/blame - branch.h
path.c: clarify trie_find()'s in-code comment
[thirdparty/git.git] / branch.h
CommitLineData
e496c003
DB
1#ifndef BRANCH_H
2#define BRANCH_H
3
4edce172 4struct repository;
ef3ca954
EN
5struct strbuf;
6
e730b81d
EN
7enum branch_track {
8 BRANCH_TRACK_UNSPECIFIED = -1,
9 BRANCH_TRACK_NEVER = 0,
10 BRANCH_TRACK_REMOTE,
11 BRANCH_TRACK_ALWAYS,
12 BRANCH_TRACK_EXPLICIT,
13 BRANCH_TRACK_OVERRIDE
14};
15
16extern enum branch_track git_branch_track;
17
c369e7b8
DB
18/* Functions for acting on the information about branches. */
19
20/*
4bd488ea
JK
21 * Creates a new branch, where:
22 *
4edce172
NTND
23 * - r is the repository to add a branch to
24 *
4bd488ea
JK
25 * - name is the new branch name
26 *
27 * - start_name is the name of the existing branch that the new branch should
28 * start from
29 *
30 * - force enables overwriting an existing (non-head) branch
31 *
f6cea74d
KS
32 * - clobber_head_ok allows the currently checked out (hence existing)
33 * branch to be overwritten; without 'force', it has no effect.
34 *
4bd488ea
JK
35 * - reflog creates a reflog for the branch
36 *
f6cea74d
KS
37 * - quiet suppresses tracking information
38 *
4bd488ea
JK
39 * - track causes the new branch to be configured to merge the remote branch
40 * that start_name is a tracking branch for (if any).
e2bbd0cc 41 *
c369e7b8 42 */
4edce172
NTND
43void create_branch(struct repository *r,
44 const char *name, const char *start_name,
e2bbd0cc
KS
45 int force, int clobber_head_ok,
46 int reflog, int quiet, enum branch_track track);
e496c003 47
55c4a673 48/*
bc1c9c0e
JH
49 * Check if 'name' can be a valid name for a branch; die otherwise.
50 * Return 1 if the named branch already exists; return 0 otherwise.
51 * Fill ref with the full refname for the branch.
52 */
55454427 53int validate_branchname(const char *name, struct strbuf *ref);
bc1c9c0e
JH
54
55/*
56 * Check if a branch 'name' can be created as a new branch; die otherwise.
57 * 'force' can be used when it is OK for the named branch already exists.
58 * Return 1 if the named branch already exists; return 0 otherwise.
59 * Fill ref with the full refname for the branch.
55c4a673 60 */
55454427 61int validate_new_branchname(const char *name, struct strbuf *ref, int force);
55c4a673 62
b6433555
NTND
63/*
64 * Remove information about the merge state on the current
65 * branch. (E.g., MERGE_HEAD)
66 */
67void remove_merge_branch_state(struct repository *r);
68
c369e7b8
DB
69/*
70 * Remove information about the state of working on the current
71 * branch. (E.g., MERGE_HEAD)
72 */
f4a4b9ac 73void remove_branch_state(struct repository *r, int verbose);
c369e7b8 74
a9f2c136 75/*
13931236
MM
76 * Configure local branch "local" as downstream to branch "remote"
77 * from remote "origin". Used by git branch --set-upstream.
27852b2c 78 * Returns 0 on success.
a9f2c136
JH
79 */
80#define BRANCH_CONFIG_VERBOSE 01
55454427 81int install_branch_config(int flag, const char *local, const char *origin, const char *remote);
a9f2c136 82
6f9a3321
JH
83/*
84 * Read branch description
85 */
55454427 86int read_branch_desc(struct strbuf *, const char *branch_name);
6f9a3321 87
ed89f84b
ES
88/*
89 * Check if a branch is checked out in the main worktree or any linked
90 * worktree and die (with a message describing its checkout location) if
91 * it is.
92 */
55454427 93void die_if_checked_out(const char *branch, int ignore_current_worktree);
ed89f84b 94
70999e9c
KY
95/*
96 * Update all per-worktree HEADs pointing at the old ref to point the new ref.
97 * This will be used when renaming a branch. Returns 0 if successful, non-zero
98 * otherwise.
99 */
55454427 100int replace_each_worktree_head_symref(const char *oldref, const char *newref,
ad6dad09 101 const char *logmsg);
70999e9c 102
e496c003 103#endif