Text
delete directories with git-svn
Sometime when you remove directories like:
vendor/gems/acts-as-taggable-on-2.0.0.rc1
git leaves the empty directories behind.
When you work with git svn this can leave the svn repository in an incongruous state. You can remove empty dir during svn dcomit via:
git svn dcommit —rmdir vendor/gems/acts-as-taggable-on-2.0.0.rc1
which I think is the only way to undo something that is already been committed in svn.