15 lines
302 B
Bash
15 lines
302 B
Bash
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"
|
|
|
|
echo "Removing this file to prevent future accidental deletes"
|
|
|
|
rm removegit.sh
|
|
|
|
echo "Bye..." |