This commit is contained in:
2025-03-30 05:02:45 +03:00
parent b3d4b3e5e2
commit 1fb79fea4a

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 ' + escape(key) + ' ' + escape(value)
cmd = 'git config --global ' + key + ' ' + escape(value)
result = os.popen(cmd)
key = 'url.'+GITHUB_SERVER_URL+'/.insteadOf'