This file contains hidden or 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
:: port forwarding | |
netsh interface portproxy add v4tov4 listenport=1234 listenaddress=111.222.333.444 connectport=4321 connectaddress=444.333.222.111 | |
netsh interface portproxy delete v4tov4 listenport=1234 listenaddress=111.222.333.444 | |
:: enable firewall | |
netsh advfirewall firewall add rule name="allow port 22" dir=in action=allow protocol=TCP localport=22 | |
netsh advfirewall firewall delete rule name="allow port 22" |
This file contains hidden or 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
git config --global credential.credentialStore dpapi |
OlderNewer