diff --git a/execute.py b/execute.py index 02da871..3d73cf4 100755 --- a/execute.py +++ b/execute.py @@ -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())