]> git.ipfire.org Git - thirdparty/git.git/blame - branch.h
builtin/branch: consolidate action-picking logic in cmd_branch()
[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,
d3115660
JS
13 BRANCH_TRACK_OVERRIDE,
14 BRANCH_TRACK_INHERIT,
e730b81d
EN
15};
16
17extern enum branch_track git_branch_track;
18
c369e7b8
DB
19/* Functions for acting on the information about branches. */
20
e89f151d
GC
21/**
22 * Sets branch.<new_ref>.{remote,merge} config settings such that
23 * new_ref tracks orig_ref according to the specified tracking mode.
24 *
25 * - new_ref is the name of the branch that we are setting tracking
26 * for.
27 *
28 * - orig_ref is the name of the ref that is 'upstream' of new_ref.
29 * orig_ref will be expanded with DWIM so that the config settings
30 * are in the correct format e.g. "refs/remotes/origin/main" instead
31 * of "origin/main".
32 *
33 * - track is the tracking mode e.g. BRANCH_TRACK_REMOTE causes
34 * new_ref to track orig_ref directly, whereas BRANCH_TRACK_INHERIT
35 * causes new_ref to track whatever orig_ref tracks.
36 *
37 * - quiet suppresses tracking information.
38 */
39void dwim_and_setup_tracking(struct repository *r, const char *new_ref,
40 const char *orig_ref, enum branch_track track,
41 int quiet);
42
c369e7b8 43/*
4bd488ea
JK
44 * Creates a new branch, where:
45 *
4edce172
NTND
46 * - r is the repository to add a branch to
47 *
4bd488ea
JK
48 * - name is the new branch name
49 *
50 * - start_name is the name of the existing branch that the new branch should
51 * start from
52 *
53 * - force enables overwriting an existing (non-head) branch
54 *
bc0893cf
GC
55 * - clobber_head_ok, when enabled with 'force', allows the currently
56 * checked out (head) branch to be overwritten
f6cea74d 57 *
4bd488ea
JK
58 * - reflog creates a reflog for the branch
59 *
f6cea74d
KS
60 * - quiet suppresses tracking information
61 *
4bd488ea
JK
62 * - track causes the new branch to be configured to merge the remote branch
63 * that start_name is a tracking branch for (if any).
e2bbd0cc 64 *
3f3e7608
GC
65 * - dry_run causes the branch to be validated but not created.
66 *
c369e7b8 67 */
4edce172
NTND
68void create_branch(struct repository *r,
69 const char *name, const char *start_name,
e2bbd0cc 70 int force, int clobber_head_ok,
3f3e7608
GC
71 int reflog, int quiet, enum branch_track track,
72 int dry_run);
e496c003 73
55c4a673 74/*
bc1c9c0e
JH
75 * Check if 'name' can be a valid name for a branch; die otherwise.
76 * Return 1 if the named branch already exists; return 0 otherwise.
77 * Fill ref with the full refname for the branch.
78 */
55454427 79int validate_branchname(const char *name, struct strbuf *ref);
bc1c9c0e
JH
80
81/*
82 * Check if a branch 'name' can be created as a new branch; die otherwise.
83 * 'force' can be used when it is OK for the named branch already exists.
84 * Return 1 if the named branch already exists; return 0 otherwise.
85 * Fill ref with the full refname for the branch.
55c4a673 86 */
55454427 87int validate_new_branchname(const char *name, struct strbuf *ref, int force);
55c4a673 88
b6433555
NTND
89/*
90 * Remove information about the merge state on the current
91 * branch. (E.g., MERGE_HEAD)
92 */
93void remove_merge_branch_state(struct repository *r);
94
c369e7b8
DB
95/*
96 * Remove information about the state of working on the current
97 * branch. (E.g., MERGE_HEAD)
98 */
f4a4b9ac 99void remove_branch_state(struct repository *r, int verbose);
c369e7b8 100
a9f2c136 101/*
13931236
MM
102 * Configure local branch "local" as downstream to branch "remote"
103 * from remote "origin". Used by git branch --set-upstream.
27852b2c 104 * Returns 0 on success.
a9f2c136
JH
105 */
106#define BRANCH_CONFIG_VERBOSE 01
55454427 107int install_branch_config(int flag, const char *local, const char *origin, const char *remote);
a9f2c136 108
6f9a3321
JH
109/*
110 * Read branch description
111 */
55454427 112int read_branch_desc(struct strbuf *, const char *branch_name);
6f9a3321 113
ed89f84b
ES
114/*
115 * Check if a branch is checked out in the main worktree or any linked
116 * worktree and die (with a message describing its checkout location) if
117 * it is.
118 */
55454427 119void die_if_checked_out(const char *branch, int ignore_current_worktree);
ed89f84b 120
70999e9c
KY
121/*
122 * Update all per-worktree HEADs pointing at the old ref to point the new ref.
123 * This will be used when renaming a branch. Returns 0 if successful, non-zero
124 * otherwise.
125 */
55454427 126int replace_each_worktree_head_symref(const char *oldref, const char *newref,
ad6dad09 127 const char *logmsg);
70999e9c 128
e496c003 129#endif