From e1371ed846319d9e338c2102e4ef8144e4f2b0af Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sun, 19 Oct 2025 05:12:36 +0300 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20executor/cli/git.py?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- executor/cli/git.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/executor/cli/git.py b/executor/cli/git.py index 502e792..bece744 100644 --- a/executor/cli/git.py +++ b/executor/cli/git.py @@ -70,10 +70,13 @@ def handle_git(args): exec_cmd(cmd) cmd = 'git remote add origin ' + GITHUB_SERVER_URL + '/' + REPOSITORY + print(cmd) exec_cmd(cmd) - cmd = 'git fetch --progress --depth ' + DEPTH + ' origin ' + REF + cmd = 'git fetch --progress --depth ' + DEPTH + ' origin ' + GITHUB_REF_NAME + print(cmd) exec_cmd(cmd) cmd = 'git checkout ' + GITHUB_REF_NAME + print(cmd) exec_cmd(cmd)