summaryrefslogtreecommitdiff
path: root/branch.h
diff options
context:
space:
mode:
authorDerrick Stolee <derrickstolee@github.com>2022-06-14 19:27:29 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-06-15 17:47:18 (GMT)
commit31ad6b61bdaa408f2616d7dca0f6d66ee4742c8d (patch)
tree2719f2e32837369e1f3424d95e2d3ab744af73e2 /branch.h
parent5ed49a75f3a76731547e8322118a0bea1dd93676 (diff)
downloadgit-31ad6b61bdaa408f2616d7dca0f6d66ee4742c8d.zip
git-31ad6b61bdaa408f2616d7dca0f6d66ee4742c8d.tar.gz
git-31ad6b61bdaa408f2616d7dca0f6d66ee4742c8d.tar.bz2
branch: add branch_checked_out() helper
The validate_new_branchname() method contains a check to see if a branch is checked out in any non-bare worktree. This is intended to prevent a force push that will mess up an existing checkout. This helper is not suitable to performing just that check, because the method will die() when the branch is checked out instead of returning an error code. Create a new branch_checked_out() helper that performs the most basic form of this check. To ensure we can call branch_checked_out() in a loop with good performance, do a single preparation step that iterates over all worktrees and stores their current HEAD branches in a strmap. The branch_checked_out() helper can then discover these branches using a hash lookup. This helper is currently missing some key functionality. Namely: it doesn't look for active rebases or bisects which mean that the branch is "checked out" even though HEAD doesn't point to that ref. This functionality will be added in a coming change. We could use branch_checked_out() in validate_new_branchname(), but this missing functionality would be a regression. However, we have no tests that cover this case! Add a new test script that will be expanded with these cross-worktree ref updates. The current tests would still pass if we refactored validate_new_branchname() to use this version of branch_checked_out(). The next change will fix that functionality and add the proper test coverage. Signed-off-by: Derrick Stolee <derrickstolee@github.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'branch.h')
-rw-r--r--branch.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/branch.h b/branch.h
index 04df2aa5..60b2591 100644
--- a/branch.h
+++ b/branch.h
@@ -100,6 +100,13 @@ void create_branches_recursively(struct repository *r, const char *name,
const char *tracking_name, int force,
int reflog, int quiet, enum branch_track track,
int dry_run);
+
+/*
+ * If the branch at 'refname' is currently checked out in a worktree,
+ * then return the path to that worktree.
+ */
+const char *branch_checked_out(const char *refname);
+
/*
* Check if 'name' can be a valid name for a branch; die otherwise.
* Return 1 if the named branch already exists; return 0 otherwise.