Git
Helpful scripts and tips to aid in version control. Might also include help for working with GitHub.
Quickly create a global .gitignore
for your local environment:
echo '.DS_Store' > ~/.gitignore
git config --global core.excludesfile ~/.gitignore
Table of contents