Last Updated: February 25, 2016
·
213
· jokame

Deleting files in Git/Github

After deleting some local files, if you want to delete it/them from the git repository, just:

git add . -A

Then:

git commit -m "Not showing the deleted files."

That's it.