This commit is contained in:
2025-03-30 05:15:00 +03:00
parent 9cf3132280
commit 1f5d3103f6

View File

@@ -23,7 +23,7 @@ base64_string = 'AUTHORIZATION: basic ' + base64_bytes.decode("utf-8")
key = 'http.'+GITHUB_SERVER_URL+'/.extraheader'
value = base64_string
cmd = 'git config --global ' + key + ' ' + value
cmd = 'git config --global ' + key + ' ' + escape(value)
result = os.popen(cmd)
key = 'url.'+GITHUB_SERVER_URL+'/.insteadOf'