From 88bf75879bbbc893c23b243b83a65e5efc858bd1 Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Mon, 16 Mar 2026 23:07:51 +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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/executor/cli/git.py b/executor/cli/git.py index 3d2b1a6..e07d318 100644 --- a/executor/cli/git.py +++ b/executor/cli/git.py @@ -81,10 +81,10 @@ def handle_git(args): print(cmd) exec_cmd(cmd) - cmd = 'git -C ' + INPUT_PATH + ' fetch --progress --depth ' + DEPTH + ' origin refs/heads/' + INPUT_REF + cmd = 'git -C ' + INPUT_PATH + ' fetch --progress --depth ' + DEPTH + ' origin ' + INPUT_REF print(cmd) exec_cmd(cmd) - cmd = 'git -C ' + INPUT_PATH + ' checkout origin/' + config['ref'] + cmd = 'git -C ' + INPUT_PATH + ' checkout ' + config['ref'] print(cmd) exec_cmd(cmd)