And by the way, is there a reason I can't simply git submodule rm whatever?

link|improve this question

feedback

5 Answers

up vote 512 down vote accepted
+50

(via this page)

To remove a submodule you need to:

  1. Delete the relevant section from the .gitmodules file.
  2. Delete the relevant section from .git/config.
  3. Run git rm --cached path_to_submodule (no trailing slash).
  4. Commit and delete the now untracked submodule files.
link|improve this answer
60  
"And by the way, is there a reason I can't simply git submodule rm whatever?" ? – abernier Jan 20 '11 at 19:04
4  
@abernier A curt answer could be "because no such command exists." My guess is that they're trying to make the removal of submodule files vs submodule configuration explicit to avoid accidental data loss. Perhaps one person would think that git submodule rm simply removes submodule registration, and would be surprised if the command also deleted the local repository. Any local changes would be irretrievably lost. And perhaps another person would think that only the files would be removed. – John Douthat Jan 21 '11 at 1:50
28  
Frankly, I don't know why. I hope they add a command, though. These 4 steps are too complicated. – John Douthat Jan 21 '11 at 1:56
3  
@dtan make sure there is no trailing slash – John Douthat Dec 18 '11 at 5:29
5  
Here's a bash script that removes a submodule, just create a git alias for submodule-rm ;) gist.github.com/2491147 – barraponto Apr 25 at 17:27
show 10 more comments
feedback

Have a look at this answer.

As suggested before, use git rm --cached $submodulepath.

To remove config all entries you need to do this:

git config -f .git/config --remove-section submodule.$submodulepath
git config -f .gitmodules --remove-section submodule.$submodulepath

Please note: $submodulepath doesn't contain leading or trailing slashes.

When you do git submodule add, it only adds it to .gitmodules, but once you did git submodule init it has been added to .git/config too.

So if you wish to remove the modules, but be able to restore it quickly, then do just this:

git rm --cached $submodulepath
git config -f .git/config --remove-section submodule.$submodulepath

It is a good idea to do git git rebase HEAD first and git commit at the end, if you put this in a script.

link|improve this answer
I had a lot of submodules (and a bigger mess) so I had to pass them through a for loop. Since most of them where under a specific directory and ls output contained trailing slashes. I did something like for dir in directory/*; do git rm --cached $dir; done. – PaBLoX Oct 9 '11 at 20:50
To get this the list which can be used in script for recursive deletion - git config -f .git/config -l | cut -d'=' -f1 | grep "submodule.$MODPATH" | sed 's/^submodule\.//' | sed 's/\.url$//' - - looks like you have to really do this in case if there is something messed up, otherwise just git submodule | grep -v '^+' | cut -d' ' -f3 – errordeveloper Oct 12 '11 at 0:43
to get the list of modules where no local changes had been made - git submodule | grep '^+' | cut -d' ' -f2 – errordeveloper Oct 12 '11 at 1:01
+1 for explaining that git submodule init updates .git/config – RobM Feb 4 at 19:21
feedback

You must remove the entry in .gitmodules and .git/config, and remove the directory of the module from the history:

git rm --cached path/to/submodule

If you'll write on git's mailing list probably someone will do a shell script for you.

link|improve this answer
feedback

In addition to the recommendations, I also had to rm -Rf .git/modules/path/to/submodule to be able to add a new submodule with the same name (in my case I was replacing a fork with the original)

link|improve this answer
I was having troubles with this as well. If you try to reinstall a submodule to the same path, it keeps the branch info cached in the location you mentioned which messes things up. – jangosteve Mar 5 at 22:27
Thanks! That's super helpful! I've ran into this quite a few times. – Johannes Fahrenkrug Mar 15 at 14:52
feedback

If the submodule was accidentally added because you added, committed and pushed a folder that was already a git repo (contained .git), you won’t have a .gitmodules file to edit, or anything in .git/config. In this case all you need is:

git rm --cached subfolder
git add subfolder
git commit -m "Enter message here"
git push

Fwiw I also removed the .git folder before doing the git add.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.