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
# clear old credentials | |
git credential-osxkeychain erase | |
host=github.com | |
protocol=https | |
<enter> | |
# view existing credentials | |
git credential-osxkeychain get | |
host=github.com | |
<enter> |
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
# Override Settings For ~/.ssh/config | |
# do not add localhost to known hosts (useful if you create tunnels frequently) | |
NoHostAuthenticationForLocalhost yes |
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
# global packages are located at: | |
# /usr/local/lib/node_modules/ | |
# see all installed global packages | |
npm ls -g | |
# see all outdated global packages | |
npm outdated -g --depth=0 | |
# npm update all global packages |
OlderNewer