From: Hariom Verma Date: Sun, 23 Feb 2020 18:57:09 +0000 (+0000) Subject: t5509: use a bare repository for test push target X-Git-Tag: v2.26.0-rc0~10^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f8692114dbb1b3ffe0b71871a015c632c195b784;p=thirdparty%2Fgit.git t5509: use a bare repository for test push target `receive.denyCurrentBranch` currently has a bug where it allows pushing into non-bare repository using namespaces as long as it does not have any commits. This would cause t5509 to fail once that bug is fixed because it pushes into an unborn current branch. In t5509, no operations are performed inside `pushee`, as it is only a target for `git push` and `git ls-remote` calls. Therefore it does not need to have a worktree. So, it is safe to change `pushee` to a bare repository. Helped-by: Johannes Schindelin Signed-off-by: Hariom Verma Signed-off-by: Junio C Hamano --- diff --git a/t/t5509-fetch-push-namespaces.sh b/t/t5509-fetch-push-namespaces.sh index 75cbfcc392..e3975bd21d 100755 --- a/t/t5509-fetch-push-namespaces.sh +++ b/t/t5509-fetch-push-namespaces.sh @@ -20,7 +20,7 @@ test_expect_success setup ' ) && commit0=$(cd original && git rev-parse HEAD^) && commit1=$(cd original && git rev-parse HEAD) && - git init pushee && + git init --bare pushee && git init puller '