From 086fb1143672af617a8293be688b47f1ea2b46be Mon Sep 17 00:00:00 2001 From: Michael Hoennig Date: Thu, 26 Sep 2024 14:09:44 +0200 Subject: [PATCH] echo checkout command --- bin/git-pull-and-if-origin-changed-run-tests | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/git-pull-and-if-origin-changed-run-tests b/bin/git-pull-and-if-origin-changed-run-tests index 1fd1b1ed..bed7056e 100755 --- a/bin/git-pull-and-if-origin-changed-run-tests +++ b/bin/git-pull-and-if-origin-changed-run-tests @@ -11,6 +11,7 @@ while true; do if [ -n "$branch_with_new_commits" ]; then echo "checking out branch: $branch_with_new_commits" + echo "git checkout -b \"$branch_with_new_commits\" \"origin/$branch_with_new_commits\"" git checkout -b "$branch_with_new_commits" "origin/$branch_with_new_commits" echo "building ..."