Created
November 27, 2013 01:29
-
-
Save okunishinishi/7669274 to your computer and use it in GitHub Desktop.
社内でgitやnpmを使うときの設定
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
git config --global http.proxy http://myproxy:8080 | |
git config --global https.proxy https://myproxy:8080 | |
npm config set proxy http://myproxy:8080 | |
npm config set https-proxy https://myproxy:8080 | |
npm config set registry http://registry.npmjs.org/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment