- Home Team on right side of score. Or bottom of boxscore.
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
| # New Git Repo w/ Basic .gitignore | |
| function new-git() { | |
| mkdir $1 | |
| cd $1 | |
| touch .gitignore | |
| echo ".DS_Store" >> .gitignore | |
| git init | |
| git add --all | |
| git commit -m "First Commit. Added basic .gitignore" | |
| } |