Is it possible to remove all files in a repository and update it with only the files I have in my local machine? The reason is that, there are certain files that is not necessar
I was trying to do :
git rm -r *
but at the end for me works :
git rm -r .
I hope it helps to you.