From 330231f56997dbc4771ab9048a97c4cddab8f92f Mon Sep 17 00:00:00 2001 From: RemiZOffAlex Date: Sun, 30 Mar 2025 03:45:18 +0300 Subject: [PATCH] Update --- execute.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/execute.py b/execute.py index ef5f226..02da871 100755 --- a/execute.py +++ b/execute.py @@ -34,6 +34,11 @@ print(cmd) result = os.popen(cmd) print(result.read()) +cmd = 'git config list --global' +print(cmd) +result = os.popen(cmd) +print(result.read()) + cmd = 'git clone ' + \ GITHUB_SERVER_URL + '/' + \ GITHUB_REPOSITORY + ' ' + os.getcwd()