git checkout -b add_gitignore
echo -e '.bundle\n.sass-cache\n.vendor\n_site' > .gitignore
git add .gitignore
git commit -m 'Add .gitignore'
git push origin add_gitignore

git checkout -b fix_issue_2

git commit -m 'Demo example of closing issues. Closes #2'
git push origin fix_issue_2