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
Delete all elements in repository:
git rm -r * -f -q
then:
git commit -m 'Delete all the stuff'
git push -u origin master
Username for : "Your Username" Password for : "Your Password"