From 7216ab6c6381f844941ffe2eb7af19f51458428a Mon Sep 17 00:00:00 2001 From: Mitchell Hanberg Date: Mon, 26 Nov 2018 00:39:20 -0500 Subject: [PATCH] Replace template gitignore during setup --- .gitignore | 1 + bin/setup | 7 +++++++ 2 files changed, 8 insertions(+) diff --git a/.gitignore b/.gitignore index de36087..192adf2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ _site +.DS_STORE .sass-cache .jekyll-metadata node_modules diff --git a/bin/setup b/bin/setup index 5854610..6ace50f 100755 --- a/bin/setup +++ b/bin/setup @@ -18,4 +18,11 @@ if [ "$repo_name" != "jekyll-tailwind-starter" ]; then git init echo "jekyll-tailwind-starter" > .git/description + cat << EOF > .gitignore +_site +.sass-cache +.DS_STORE +.jekyll-metadata +node_modules +EOF fi