diff --git a/execute.py b/execute.py index ef3802b..8a97a27 100755 --- a/execute.py +++ b/execute.py @@ -21,17 +21,17 @@ base64_string = 'AUTHORIZATION: basic ' + base64_bytes.decode("utf-8") key = 'http.'+GITHUB_SERVER_URL+'/.extraheader' value = '"'+base64_string+'"' -cmd = 'git config --local ' + key + ' ' + value +cmd = 'git config --global ' + key + ' ' + value result = os.popen(cmd) key = 'url.'+GITHUB_SERVER_URL+'/.insteadOf' -cmd = 'git config --local ' + key + ' ' + GITHUB_SERVER_URL +cmd = 'git config --global ' + key + ' ' + GITHUB_SERVER_URL result = os.popen(cmd) -cmd = 'git config list --local' -print(cmd) -result = os.popen(cmd) -print(result.read()) +# cmd = 'git config list --local' +# print(cmd) +# result = os.popen(cmd) +# print(result.read()) cmd = 'git config list --global' print(cmd)