10 lines
207 B
Bash
10 lines
207 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"
|