script to delete git files associated with this repo

This commit is contained in:
Pavak Paul 2022-04-21 01:58:58 +05:30
parent 18c67410d3
commit 9b2e79643d

9
removegit.sh Normal file
View File

@ -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"