From 9b2e79643db126aeadf1f55d1f53519c0905fa71 Mon Sep 17 00:00:00 2001 From: Pavak Paul Date: Thu, 21 Apr 2022 01:58:58 +0530 Subject: [PATCH] script to delete git files associated with this repo --- removegit.sh | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 removegit.sh diff --git a/removegit.sh b/removegit.sh new file mode 100644 index 0000000..ed0cb0f --- /dev/null +++ b/removegit.sh @@ -0,0 +1,9 @@ +echo "removing everything related to the starter git repo" + +echo "removing git..." +rm -rf .git + +echo "removing LICENSE and README.md..." +rm LICENSE README.md + +echo "keeping .gitignore as it might be useful"