Last active
October 23, 2024 06:35
-
-
Save vheidari/cf7be91dcc522c388488552a59e22049 to your computer and use it in GitHub Desktop.
MSYS2 - How to set proxy settings in msys2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Add below lines to the profile in : /etc/profile | |
# Proxy Setting | |
export HTTP_PROXY="IpAddress:Port" # Like: 127.0.0.1:1477 | |
export HTTPS_PROXY=$HTTP_PROXY | |
export http_proxy=$HTTP_PROXY | |
export https_proxy=$HTTP_PROXY |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You're welcome @vagra☺️