mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-09 16:45:49 +00:00
branch: restrict branch deletion for worktrees
Restrict the ability to delete branches that are checked out in any linked repository.
This commit is contained in:
parent
e3acd37b70
commit
143e539fd0
@ -206,6 +206,12 @@ int git_branch_delete(git_reference *branch)
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (git_reference_is_branch(branch) && git_branch_is_checked_out(branch)) {
|
||||
giterr_set(GITERR_REFERENCE, "Cannot delete branch '%s' as it is "
|
||||
"the current HEAD of a linked repository.", git_reference_name(branch));
|
||||
return -1;
|
||||
}
|
||||
|
||||
if (git_buf_join(&config_section, '.', "branch",
|
||||
git_reference_name(branch) + strlen(GIT_REFS_HEADS_DIR)) < 0)
|
||||
goto on_error;
|
||||
|
@ -1,4 +1,5 @@
|
||||
#include "clar_libgit2.h"
|
||||
#include "worktree.h"
|
||||
#include "worktree_helpers.h"
|
||||
|
||||
#define COMMON_REPO "testrepo"
|
||||
@ -66,3 +67,29 @@ void test_worktree_refs__read_head(void)
|
||||
|
||||
git_reference_free(head);
|
||||
}
|
||||
|
||||
void test_worktree_refs__delete_fails_for_checked_out_branch(void)
|
||||
{
|
||||
git_reference *branch;
|
||||
|
||||
cl_git_pass(git_branch_lookup(&branch, fixture.repo,
|
||||
"testrepo-worktree", GIT_BRANCH_LOCAL));
|
||||
cl_git_fail(git_branch_delete(branch));
|
||||
|
||||
git_reference_free(branch);
|
||||
}
|
||||
|
||||
void test_worktree_refs__delete_succeeds_after_pruning_worktree(void)
|
||||
{
|
||||
git_reference *branch;
|
||||
git_worktree *worktree;
|
||||
|
||||
cl_git_pass(git_worktree_lookup(&worktree, fixture.repo, fixture.worktreename));
|
||||
cl_git_pass(git_worktree_prune(worktree, GIT_WORKTREE_PRUNE_VALID));
|
||||
git_worktree_free(worktree);
|
||||
|
||||
cl_git_pass(git_branch_lookup(&branch, fixture.repo,
|
||||
"testrepo-worktree", GIT_BRANCH_LOCAL));
|
||||
cl_git_pass(git_branch_delete(branch));
|
||||
git_reference_free(branch);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user