I recently began using github and started playing with eclipse’s git abilities, using some plugin (not sure which one added the functionality, might be aptana or git plugin). Somehow, the file’s path got mixed up and posted to github as
src\com\XXXX\XXXX\SomeClass.java
instead of properly foldering into
src/com/XXXX/XXXX/SomeClass.java
There is no src\com\XXXX\XXXX\SomeClass.java in my local repo, and when I do a fetch it doesn’t grab that file. How can I force it out of the listing on github?
I’ve tried removing src/com/XXXX/XXXX/SomeClass.java, committing/push, re-adding, and then committing/push again.
Another contributer rebuilt the repo without the bugged files.