Daniel Barkalow | e496c00 | 2008-02-07 11:40:08 -0500 | [diff] [blame] | 1 | #ifndef BRANCH_H |
| 2 | #define BRANCH_H |
| 3 | |
Daniel Barkalow | c369e7b | 2008-02-07 11:40:16 -0500 | [diff] [blame] | 4 | /* Functions for acting on the information about branches. */ |
| 5 | |
| 6 | /* |
Jeff King | 4bd488e | 2016-11-04 12:30:12 -0400 | [diff] [blame] | 7 | * 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 Barkalow | c369e7b | 2008-02-07 11:40:16 -0500 | [diff] [blame] | 20 | */ |
Jeff King | 4bd488e | 2016-11-04 12:30:12 -0400 | [diff] [blame] | 21 | void create_branch(const char *name, const char *start_name, |
Jonathan Nieder | 39bd6f7 | 2011-11-26 02:54:55 -0600 | [diff] [blame] | 22 | int force, int reflog, |
Jeff King | f9a482e | 2012-03-26 19:51:01 -0400 | [diff] [blame] | 23 | int clobber_head, int quiet, enum branch_track track); |
Daniel Barkalow | e496c00 | 2008-02-07 11:40:08 -0500 | [diff] [blame] | 24 | |
Daniel Barkalow | c369e7b | 2008-02-07 11:40:16 -0500 | [diff] [blame] | 25 | /* |
Junio C Hamano | bc1c9c0 | 2017-10-13 13:45:40 +0900 | [diff] [blame] | 26 | * Check if 'name' can be a valid name for a branch; die otherwise. |
| 27 | * Return 1 if the named branch already exists; return 0 otherwise. |
| 28 | * Fill ref with the full refname for the branch. |
Conrad Irwin | 55c4a67 | 2011-08-20 14:49:48 -0700 | [diff] [blame] | 29 | */ |
Junio C Hamano | bc1c9c0 | 2017-10-13 13:45:40 +0900 | [diff] [blame] | 30 | extern int validate_branchname(const char *name, struct strbuf *ref); |
| 31 | |
| 32 | /* |
| 33 | * Check if a branch 'name' can be created as a new branch; die otherwise. |
| 34 | * 'force' can be used when it is OK for the named branch already exists. |
| 35 | * Return 1 if the named branch already exists; return 0 otherwise. |
| 36 | * Fill ref with the full refname for the branch. |
| 37 | */ |
| 38 | extern int validate_new_branchname(const char *name, struct strbuf *ref, int force); |
Conrad Irwin | 55c4a67 | 2011-08-20 14:49:48 -0700 | [diff] [blame] | 39 | |
| 40 | /* |
Daniel Barkalow | c369e7b | 2008-02-07 11:40:16 -0500 | [diff] [blame] | 41 | * Remove information about the state of working on the current |
| 42 | * branch. (E.g., MERGE_HEAD) |
| 43 | */ |
| 44 | void remove_branch_state(void); |
| 45 | |
Junio C Hamano | a9f2c13 | 2009-03-03 22:29:55 -0800 | [diff] [blame] | 46 | /* |
Matthieu Moy | 1393123 | 2010-11-02 16:31:25 +0100 | [diff] [blame] | 47 | * Configure local branch "local" as downstream to branch "remote" |
| 48 | * from remote "origin". Used by git branch --set-upstream. |
Patrick Steinhardt | 27852b2 | 2016-02-22 12:23:23 +0100 | [diff] [blame] | 49 | * Returns 0 on success. |
Junio C Hamano | a9f2c13 | 2009-03-03 22:29:55 -0800 | [diff] [blame] | 50 | */ |
| 51 | #define BRANCH_CONFIG_VERBOSE 01 |
Patrick Steinhardt | 27852b2 | 2016-02-22 12:23:23 +0100 | [diff] [blame] | 52 | extern int install_branch_config(int flag, const char *local, const char *origin, const char *remote); |
Junio C Hamano | a9f2c13 | 2009-03-03 22:29:55 -0800 | [diff] [blame] | 53 | |
Junio C Hamano | 6f9a332 | 2011-09-21 20:19:38 -0700 | [diff] [blame] | 54 | /* |
| 55 | * Read branch description |
| 56 | */ |
| 57 | extern int read_branch_desc(struct strbuf *, const char *branch_name); |
| 58 | |
Eric Sunshine | ed89f84 | 2015-07-17 19:00:04 -0400 | [diff] [blame] | 59 | /* |
| 60 | * Check if a branch is checked out in the main worktree or any linked |
| 61 | * worktree and die (with a message describing its checkout location) if |
| 62 | * it is. |
| 63 | */ |
Nguyễn Thái Ngọc Duy | 8d9fdd7 | 2016-04-22 20:01:33 +0700 | [diff] [blame] | 64 | extern void die_if_checked_out(const char *branch, int ignore_current_worktree); |
Eric Sunshine | ed89f84 | 2015-07-17 19:00:04 -0400 | [diff] [blame] | 65 | |
Kazuki Yamaguchi | 70999e9 | 2016-03-27 23:37:14 +0900 | [diff] [blame] | 66 | /* |
| 67 | * Update all per-worktree HEADs pointing at the old ref to point the new ref. |
| 68 | * This will be used when renaming a branch. Returns 0 if successful, non-zero |
| 69 | * otherwise. |
| 70 | */ |
Kyle Meyer | 39ee4c6 | 2017-02-20 20:10:35 -0500 | [diff] [blame] | 71 | extern int replace_each_worktree_head_symref(const char *oldref, const char *newref, |
| 72 | const char *logmsg); |
Kazuki Yamaguchi | 70999e9 | 2016-03-27 23:37:14 +0900 | [diff] [blame] | 73 | |
Daniel Barkalow | e496c00 | 2008-02-07 11:40:08 -0500 | [diff] [blame] | 74 | #endif |