checkout: make --to unconditionally verbose
[gitweb.git] / t / t2025-checkout-to.sh
index a8d93366f6bff23ec8edab5227f4931215a6dd3d..0fd731b4bc5d53fe63a7dd8a73457a6e916b7b98 100755 (executable)
@@ -134,4 +134,14 @@ test_expect_success 'checkout with grafts' '
        test_cmp expected actual
 '
 
+test_expect_success 'checkout --to from relative HEAD' '
+       test_commit a &&
+       test_commit b &&
+       test_commit c &&
+       git rev-parse HEAD~1 >expected &&
+       git checkout --to relhead HEAD~1 &&
+       git -C relhead rev-parse HEAD >actual &&
+       test_cmp expected actual
+'
+
 test_done