Okay, I'm new to git, coming from SVN.
I've got my repo @ github. Last night, did some work at home and pushed it to github. It involved some deleting of files and directories. Now I'm on my work box, which had a copy of the code before deleting the files and directories.
I issued the following:
git remote update
git checkout HEAD
git pull origin HEAD
It deleted all of the files it should have, but not the directories the files were in.
Two questions: why did it not remove the directories and is there a git command I can issue in the current state to remove them?