git push after deleting few files

git, github

Solution

Try these steps

git rm .README.md.swp
git rm ramu.txt
git commit -m "cleaning up blah blah"
git push origin master

Problem

I am a newbie to git hub. I have created a repo and pushed two files to it. By mistake a new file .README.md.swp is created inside my repo. Now I have deleted two files .README.md.swp and ramu.txt locally after that how can I update my repo on original Github site.

Original source