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 have tried like this
git rm --cached -r * -f
And it is working for me.