8 char *lock_reason
; /* internal use */
9 unsigned char head_sha1
[20];
13 int lock_reason_valid
;
16 /* Functions for acting on the information about worktrees. */
18 #define GWT_SORT_LINKED (1 << 0) /* keeps linked worktrees sorted */
21 * Get the worktrees. The primary worktree will always be the first returned,
22 * and linked worktrees will be pointed to by 'next' in each subsequent
23 * worktree. No specific ordering is done on the linked worktrees.
25 * The caller is responsible for freeing the memory from the returned
28 extern struct worktree
**get_worktrees(unsigned flags
);
31 * Returns 1 if linked worktrees exist, 0 otherwise.
33 extern int submodule_uses_worktrees(const char *path
);
36 * Return git dir of the worktree. Note that the path may be relative.
37 * If wt is NULL, git dir of current worktree is returned.
39 extern const char *get_worktree_git_dir(const struct worktree
*wt
);
42 * Search a worktree that can be unambiguously identified by
43 * "arg". "prefix" must not be NULL.
45 extern struct worktree
*find_worktree(struct worktree
**list
,
50 * Return true if the given worktree is the main one.
52 extern int is_main_worktree(const struct worktree
*wt
);
55 * Return the reason string if the given worktree is locked or NULL
58 extern const char *is_worktree_locked(struct worktree
*wt
);
61 * Free up the memory for worktree(s)
63 extern void free_worktrees(struct worktree
**);
66 * Check if a per-worktree symref points to a ref in the main worktree
67 * or any linked worktree, and return the worktree that holds the ref,
68 * or NULL otherwise. The result may be destroyed by the next call.
70 extern const struct worktree
*find_shared_symref(const char *symref
,
73 int is_worktree_being_rebased(const struct worktree
*wt
, const char *target
);
74 int is_worktree_being_bisected(const struct worktree
*wt
, const char *target
);
77 * Similar to git_path() but can produce paths for a specified
78 * worktree instead of current one
80 extern const char *worktree_git_path(const struct worktree
*wt
,
82 __attribute__((format (printf
, 2, 3)));