]> git.ipfire.org Git - thirdparty/git.git/commit - worktree.h
worktree: check if a submodule uses worktrees
authorStefan Beller <sbeller@google.com>
Mon, 12 Dec 2016 19:04:33 +0000 (11:04 -0800)
committerJunio C Hamano <gitster@pobox.com>
Mon, 12 Dec 2016 23:15:07 +0000 (15:15 -0800)
commit1a248cf21d450eb911d01a89c84412c2da365e66
tree4eb4fdd12c9a35accddac60c40bee0413a6e14a8
parent6f94351b0a4dd107623a35dc9081bf31c7ddac88
worktree: check if a submodule uses worktrees

In a later patch we want to move around the the git directory of
a submodule. Both submodules as well as worktrees are involved in
placing git directories at unusual places, so their functionality
may collide. To react appropriately to situations where worktrees
in submodules are in use, offer a new function to query the
a submodule if it uses the worktree feature.

An earlier approach:
  "Implement submodule_get_worktrees and just count them", however:
  This can be done cheaply (both in new code to write as well as run time)
  by obtaining the list of worktrees based off that submodules git
  directory. However as we have loaded the variables for the current
  repository, the values in the submodule worktree
  can be wrong, e.g.
  * core.ignorecase may differ between these two repositories
  * the ref resolution is broken (refs/heads/branch in the submodule
    resolves to the sha1 value of the `branch` in the current repository
    that may not exist or have another sha1)

The implementation here is just checking for any files in
$GIT_COMMON_DIR/worktrees for the submodule, which ought to be sufficient
if the submodule is using the current repository format, which we also
check.

Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
worktree.c
worktree.h