> From: [email protected] > > I want to rm a directory from the repository. I use "git rm dirname", but > it didn't work. Somebody help me!
I'm not sure what problem you're seeing, but (according to the man page) you can't remove a directory with "git rm dirname", you have to do "git rm -r dirname". Basically Git doesn't track directories, it tracks files, and you have to tell Git to remove all files under that directory name, and it won't do that without "-r". Dale -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
