diff --git a/execute.py b/execute.py index a6ab43e..b401637 100755 --- a/execute.py +++ b/execute.py @@ -24,8 +24,8 @@ base64_string = 'AUTHORIZATION: basic ' + base64_bytes.decode("utf-8") key = 'http.'+GITHUB_SERVER_URL+'/.extraheader' value = '"'+base64_string+'"' cmd = 'git config --global ' + key + ' ' + value -# result = os.popen(cmd) -# print('result:' , result.read()) +result = os.popen(cmd) +print('result:' , result.read()) key = 'url.'+GITHUB_SERVER_URL+'/.insteadOf' value = '"git@'+'codex.r10x.net'+'"'