🌐 AI搜索 & 代理 主页
blob: b07788558c0e76a701b571f73c0462dcf2abcc63 [file] [log] [blame]
Daniel Barkalowe496c002008-02-07 16:40:081#ifndef BRANCH_H
2#define BRANCH_H
3
Daniel Barkalowc369e7b2008-02-07 16:40:164/* Functions for acting on the information about branches. */
5
6/*
Jeff King4bd488e2016-11-04 16:30:127 * Creates a new branch, where:
8 *
9 * - name is the new branch name
10 *
11 * - start_name is the name of the existing branch that the new branch should
12 * start from
13 *
14 * - force enables overwriting an existing (non-head) branch
15 *
16 * - reflog creates a reflog for the branch
17 *
18 * - track causes the new branch to be configured to merge the remote branch
19 * that start_name is a tracking branch for (if any).
Daniel Barkalowc369e7b2008-02-07 16:40:1620 */
Jeff King4bd488e2016-11-04 16:30:1221void create_branch(const char *name, const char *start_name,
Jonathan Nieder39bd6f72011-11-26 08:54:5522 int force, int reflog,
Jeff Kingf9a482e2012-03-26 23:51:0123 int clobber_head, int quiet, enum branch_track track);
Daniel Barkalowe496c002008-02-07 16:40:0824
Daniel Barkalowc369e7b2008-02-07 16:40:1625/*
Conrad Irwin55c4a672011-08-20 21:49:4826 * Validates that the requested branch may be created, returning the
27 * interpreted ref in ref, force indicates whether (non-head) branches
28 * may be overwritten. A non-zero return value indicates that the force
29 * parameter was non-zero and the branch already exists.
Junio C Hamanofa799372011-09-16 23:28:3830 *
31 * Contrary to all of the above, when attr_only is 1, the caller is
32 * not interested in verifying if it is Ok to update the named
33 * branch to point at a potentially different commit. It is merely
34 * asking if it is OK to change some attribute for the named branch
35 * (e.g. tracking upstream).
36 *
37 * NEEDSWORK: This needs to be split into two separate functions in the
38 * longer run for sanity.
39 *
Conrad Irwin55c4a672011-08-20 21:49:4840 */
Junio C Hamanofa799372011-09-16 23:28:3841int validate_new_branchname(const char *name, struct strbuf *ref, int force, int attr_only);
Conrad Irwin55c4a672011-08-20 21:49:4842
43/*
Daniel Barkalowc369e7b2008-02-07 16:40:1644 * Remove information about the state of working on the current
45 * branch. (E.g., MERGE_HEAD)
46 */
47void remove_branch_state(void);
48
Junio C Hamanoa9f2c132009-03-04 06:29:5549/*
Matthieu Moy13931232010-11-02 15:31:2550 * Configure local branch "local" as downstream to branch "remote"
51 * from remote "origin". Used by git branch --set-upstream.
Patrick Steinhardt27852b22016-02-22 11:23:2352 * Returns 0 on success.
Junio C Hamanoa9f2c132009-03-04 06:29:5553 */
54#define BRANCH_CONFIG_VERBOSE 01
Patrick Steinhardt27852b22016-02-22 11:23:2355extern int install_branch_config(int flag, const char *local, const char *origin, const char *remote);
Junio C Hamanoa9f2c132009-03-04 06:29:5556
Junio C Hamano6f9a3322011-09-22 03:19:3857/*
58 * Read branch description
59 */
60extern int read_branch_desc(struct strbuf *, const char *branch_name);
61
Eric Sunshineed89f842015-07-17 23:00:0462/*
63 * Check if a branch is checked out in the main worktree or any linked
64 * worktree and die (with a message describing its checkout location) if
65 * it is.
66 */
Nguyễn Thái Ngọc Duy8d9fdd72016-04-22 13:01:3367extern void die_if_checked_out(const char *branch, int ignore_current_worktree);
Eric Sunshineed89f842015-07-17 23:00:0468
Kazuki Yamaguchi70999e92016-03-27 14:37:1469/*
70 * Update all per-worktree HEADs pointing at the old ref to point the new ref.
71 * This will be used when renaming a branch. Returns 0 if successful, non-zero
72 * otherwise.
73 */
Kyle Meyer39ee4c62017-02-21 01:10:3574extern int replace_each_worktree_head_symref(const char *oldref, const char *newref,
75 const char *logmsg);
Kazuki Yamaguchi70999e92016-03-27 14:37:1476
Daniel Barkalowe496c002008-02-07 16:40:0877#endif