]> git.ipfire.org Git - thirdparty/git.git/blame - worktree.h
worktree: improve find_worktree() documentation
[thirdparty/git.git] / worktree.h
CommitLineData
ac6c561b
MR
1#ifndef WORKTREE_H
2#define WORKTREE_H
3
ef3ca954 4#include "cache.h"
d0c39a49
NTND
5#include "refs.h"
6
4ddddc1f
NTND
7struct strbuf;
8
51934904
MR
9struct worktree {
10 char *path;
69dfe3b9 11 char *id;
fa099d23 12 char *head_ref; /* NULL if HEAD is broken or detached */
d236f12b 13 char *lock_reason; /* private - use worktree_lock_reason */
0f05154c 14 struct object_id head_oid;
92718b74
MR
15 int is_detached;
16 int is_bare;
750e8a60 17 int is_current;
e21cc076 18 int lock_reason_valid; /* private */
51934904
MR
19};
20
21/* Functions for acting on the information about worktrees. */
22
4df1d4d4
NTND
23#define GWT_SORT_LINKED (1 << 0) /* keeps linked worktrees sorted */
24
51934904
MR
25/*
26 * Get the worktrees. The primary worktree will always be the first returned,
27 * and linked worktrees will be pointed to by 'next' in each subsequent
28 * worktree. No specific ordering is done on the linked worktrees.
29 *
30 * The caller is responsible for freeing the memory from the returned
31 * worktree(s).
32 */
55454427 33struct worktree **get_worktrees(unsigned flags);
51934904 34
1a248cf2
SB
35/*
36 * Returns 1 if linked worktrees exist, 0 otherwise.
37 */
55454427 38int submodule_uses_worktrees(const char *path);
1a248cf2 39
69dfe3b9
NTND
40/*
41 * Return git dir of the worktree. Note that the path may be relative.
42 * If wt is NULL, git dir of current worktree is returned.
43 */
55454427 44const char *get_worktree_git_dir(const struct worktree *wt);
69dfe3b9 45
68353144 46/*
a80c4c22
ES
47 * Search for the worktree identified unambiguously by `arg` -- typically
48 * supplied by the user via the command-line -- which may be a pathname or some
49 * shorthand uniquely identifying a worktree, thus making it convenient for the
50 * user to specify a worktree with minimal typing. For instance, if the last
51 * component (say, "foo") of a worktree's pathname is unique among worktrees
52 * (say, "work/foo" and "work/bar"), it can be used to identify the worktree
53 * unambiguously.
54 *
55 * `prefix` should be the `prefix` handed to top-level Git commands along with
56 * `argc` and `argv`.
57 *
58 * Return the worktree identified by `arg`, or NULL if not found.
68353144 59 */
55454427 60struct worktree *find_worktree(struct worktree **list,
ad6dad09
DL
61 const char *prefix,
62 const char *arg);
68353144 63
984ad9e5
NTND
64/*
65 * Return true if the given worktree is the main one.
66 */
55454427 67int is_main_worktree(const struct worktree *wt);
984ad9e5 68
346ef530
NTND
69/*
70 * Return the reason string if the given worktree is locked or NULL
71 * otherwise.
72 */
55454427 73const char *worktree_lock_reason(struct worktree *wt);
346ef530 74
ee6763af
NTND
75#define WT_VALIDATE_WORKTREE_MISSING_OK (1 << 0)
76
4ddddc1f
NTND
77/*
78 * Return zero if the worktree is in good condition. Error message is
79 * returned if "errmsg" is not NULL.
80 */
55454427 81int validate_worktree(const struct worktree *wt,
ad6dad09
DL
82 struct strbuf *errmsg,
83 unsigned flags);
4ddddc1f 84
9c620fc7
NTND
85/*
86 * Update worktrees/xxx/gitdir with the new path.
87 */
55454427 88void update_worktree_location(struct worktree *wt,
ad6dad09 89 const char *path_);
9c620fc7 90
51934904
MR
91/*
92 * Free up the memory for worktree(s)
93 */
55454427 94void free_worktrees(struct worktree **);
51934904 95
ac6c561b
MR
96/*
97 * Check if a per-worktree symref points to a ref in the main worktree
d3b9ac07
NTND
98 * or any linked worktree, and return the worktree that holds the ref,
99 * or NULL otherwise. The result may be destroyed by the next call.
ac6c561b 100 */
55454427 101const struct worktree *find_shared_symref(const char *symref,
ad6dad09 102 const char *target);
ac6c561b 103
d0c39a49
NTND
104/*
105 * Similar to head_ref() for all HEADs _except_ one from the current
106 * worktree, which is covered by head_ref().
107 */
108int other_head_refs(each_ref_fn fn, void *cb_data);
109
14ace5b7
NTND
110int is_worktree_being_rebased(const struct worktree *wt, const char *target);
111int is_worktree_being_bisected(const struct worktree *wt, const char *target);
112
2e641d58
NTND
113/*
114 * Similar to git_path() but can produce paths for a specified
115 * worktree instead of current one
116 */
b199d714 117const char *worktree_git_path(const struct worktree *wt,
ad6dad09 118 const char *fmt, ...)
2e641d58
NTND
119 __attribute__((format (printf, 2, 3)));
120
3a3b9d8c
NTND
121/*
122 * Parse a worktree ref (i.e. with prefix main-worktree/ or
123 * worktrees/) and return the position of the worktree's name and
124 * length (or NULL and zero if it's main worktree), and ref.
125 *
126 * All name, name_length and ref arguments could be NULL.
127 */
128int parse_worktree_ref(const char *worktree_ref, const char **name,
129 int *name_length, const char **ref);
ab3e1f78
NTND
130
131/*
132 * Return a refname suitable for access from the current ref store.
133 */
134void strbuf_worktree_ref(const struct worktree *wt,
135 struct strbuf *sb,
136 const char *refname);
137
138/*
139 * Return a refname suitable for access from the current ref
140 * store. The result will be destroyed at the next call.
141 */
142const char *worktree_ref(const struct worktree *wt,
143 const char *refname);
144
ac6c561b 145#endif