This commit is contained in:
2025-03-30 03:45:18 +03:00
parent 9b14fe8749
commit 330231f569

View File

@@ -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()