This commit is contained in:
2025-03-30 03:49:15 +03:00
parent 330231f569
commit c8401aea37

View File

@@ -25,11 +25,10 @@ cmd = 'git config --global ' + key + ' ' + value
result = os.popen(cmd)
key = 'url.'+GITHUB_SERVER_URL+'/.insteadOf'
value = '"git@'+'codex.r10x.net'+'"'
cmd = 'git config --global ' + key + ' ' + GITHUB_SERVER_URL
# result = os.popen(cmd)
result = os.popen(cmd)
cmd = 'git config list '
cmd = 'git config list --local'
print(cmd)
result = os.popen(cmd)
print(result.read())