Created
June 13, 2022 15:31
-
-
Save ryanolsonx/131a8a86af64f8521e67137c08829bf2 to your computer and use it in GitHub Desktop.
Setup snippets
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
# Install brew | |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | |
# Configure Git | |
git config --global user.name "Ryan Olson" | |
git config --global user.email [email protected] | |
git config --global core.autocrlf input | |
touch ~/.gitignore | |
git config --global core.excludesFile ~/.gitignore | |
# Install NVM | |
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.1/install.sh | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment