Version Control#
dotfiles
If you're using the dotfiles from this project,
git
and gh
are installed and configured
automatically - see the features
section for more information on what's included.
Install git and the GitHub CLI
git config#
git config --global user.name "juftin"
git config --global user.email "[email protected]"
git config --global init.defaultBranch main
git config --global pull.rebase false
git config --global --add --bool push.autoSetupRemote true
curl https://raw.githubusercontent.com/github/gitignore/master/Global/macOS.gitignore -o ~/.gitignore
git config --global core.excludesfile ~/.gitignore