I would appreciate it if someone could tell me how I could delete every single file/folder on my git repository without actually deleting the repository itself. I want to de
This is what I have done
git rm -r -f -q git commit git push
git rm -r -f -q
git commit
git push
Then you have to manually delete the files, git rm remove the files from the repo but not from the file system