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
| #!/bin/bash | |
| set -e | |
| REPO="git@github.com:TA-Solaris/dotfiles.git" | |
| DOTFILES_DIR="$HOME/dotfiles" | |
| # Step 1: Configure Git identity | |
| git config --global user.name "Edward Potter" | |
| git config --global user.email "pottered2@gmail.com" |