summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2020-10-27 15:09:47 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2020-10-27 15:09:47 -0700
commit26bb5437f6defed72996b6a2bb1ff9121ec297ff (patch)
tree49ff7b4d03f4d7b447a5575845491b764ba376c2 /t
parentMerge branch 'rs/tighten-callers-of-deref-tag' (diff)
parentworktree: teach `list` to annotate locked worktree (diff)
downloadtgif-26bb5437f6defed72996b6a2bb1ff9121ec297ff.tar.xz
Merge branch 'rs/worktree-list-show-locked'
"git worktree list" now shows if each worktree is locked. This possibly may open us to show other kinds of states in the future. * rs/worktree-list-show-locked: worktree: teach `list` to annotate locked worktree
Diffstat (limited to 't')
-rwxr-xr-xt/t2402-worktree-list.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/t/t2402-worktree-list.sh b/t/t2402-worktree-list.sh
index 52585ec2aa..b85bd2655d 100755
--- a/t/t2402-worktree-list.sh
+++ b/t/t2402-worktree-list.sh
@@ -61,6 +61,16 @@ test_expect_success '"list" all worktrees --porcelain' '
test_cmp expect actual
'
+test_expect_success '"list" all worktress with locked annotation' '
+ test_when_finished "rm -rf locked unlocked out && git worktree prune" &&
+ git worktree add --detach locked master &&
+ git worktree add --detach unlocked master &&
+ git worktree lock locked &&
+ git worktree list >out &&
+ grep "/locked *[0-9a-f].* locked$" out &&
+ ! grep "/unlocked *[0-9a-f].* locked$" out
+'
+
test_expect_success 'bare repo setup' '
git init --bare bare1 &&
echo "data" >file1 &&