From: Elijah Newren <newren@xxxxxxxxx> The shebang was missing the leading `/` character, resulting in: $ ./t5583-push-branches.sh bash: ./t5583-push-branches.sh: cannot execute: required file not found Add the missing character so the test can run. Signed-off-by: Elijah Newren <newren@xxxxxxxxx> --- t5583: fix shebang line Applies on the top of tl/push-branches-is-an-alias-for-all. Noticed yesterday when testing my header cleanups against next & seen. Published-As: https://github.com/gitgitgadget/git/releases/tag/pr-1532%2Fnewren%2Ffix-tl-push-branches-is-an-alias-for-all-v1 Fetch-It-Via: git fetch https://github.com/gitgitgadget/git pr-1532/newren/fix-tl-push-branches-is-an-alias-for-all-v1 Pull-Request: https://github.com/gitgitgadget/git/pull/1532 t/t5583-push-branches.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/t5583-push-branches.sh b/t/t5583-push-branches.sh index 29a5c5601bd..e7e1b6dab66 100755 --- a/t/t5583-push-branches.sh +++ b/t/t5583-push-branches.sh @@ -1,4 +1,4 @@ -#!bin/sh +#!/bin/sh test_description='check the consisitency of behavior of --all and --branches' base-commit: 425b4d7f47bd2be561ced14eac36056390862e8c -- gitgitgadget