Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I remove a Git submodule?

And by the way, is there a reason I can't simply do

git submodule rm whatever

?

share|improve this question
7  
If your goal is to Replace the submodule with a different submodule, read this ... – jondavidjohn Oct 3 '12 at 22:23
@jondavidjohn You can replace submodules now, see stackoverflow.com/questions/14404704/… – joseph.hainline Jan 18 at 18:02
7  
Since git1.8.3 (April 22d, 2013), you have git submodule deinit, see my answer below. – VonC Apr 23 at 5:58
1k upvotes! Congratulations! – Doorknob May 13 at 16:15

11 Answers

up vote 26 down vote accepted

Since git1.8.3 (April 22d, 2013):

There was no Porcelain way to say "I no longer am interested in this submodule", once you express your interest in a submodule with "submodule init".
"submodule deinit" is the way to do so.

It stems from this patch:

With "git submodule init" the user is able to tell git he cares about one or more submodules and wants to have it populated on the next call to "git submodule update".
But currently there is no easy way he could tell git he does not care about a submodule anymore and wants to get rid of his local work tree (except he knows a lot about submodule internals and removes the "submodule.$name.url" setting from .git/config together with the work tree himself).

Help those users by providing a 'deinit' command.
This removes the whole submodule.<name> section from .git/config either for the given submodule(s) (or for all those which have been initialized if '.' is given).
Fail if the current work tree contains modifications unless forced.
Complain when for a submodule given on the command line the url setting can't be found in .git/config, but nonetheless don't fail.

This takes care if the (de)initialization steps (.git/config and .git/modules/xxx)

It doesn't take care of the:

  • 'add' step which records the url of a submodule in the .gitmodules file: you still need to remove it manually within that file.
  • the submodule special entry (as illustrated by this question): you still need to remove it from the index:
    git rm --cached path_to_submodule (no trailing slash)
    That will remove that directory stored in the index with a special mode "160000", marking it as a submodule root directory.

If you forget that last step, and try to add what was a submodule as a regular directory, you would get error message like:

git add mysubmodule/file.txt 
Path 'mysubmodule/file.txt' is in submodule 'mysubmodule'
share|improve this answer
1  
Can you given an example of usage for submodule deinit? – yourfriendzak Apr 28 at 18:42
3  
@yourfriendzak here is one example of someone successfully using it: stackoverflow.com/a/16161950/6309. But keep in mind that, contrary to what I originally believed, 1.8.3 is not yet released! On Unix, you can compile it from the sources. – VonC Apr 28 at 18:45
It sounds like this command doesn't remove the submodule from .gitmodules, however. In order to complete this answer, it would be helpful to note that you'll likely want to do that to completely "remove" the submodule. – Andrew Ferrier May 13 at 12:37
1  
@AndrewFerrier good point. I have edited the answer to reflect that. – VonC May 13 at 12:49
1  
@ChrisB. I have edited the answer to address your error message. – VonC May 16 at 7:01
show 1 more comment
up vote 1510 down vote
+50

Via the page Git Submodule Tutorial:

To remove a submodule you need to:

  1. Delete the relevant section from the .gitmodules file.
  2. Stage the .gitmodules changes git add .gitmodules
  3. Delete the relevant section from .git/config.
  4. Run git rm --cached path_to_submodule (no trailing slash).
  5. Run rm -rf .git/modules/submodule_name
  6. Commit
  7. Delete the now untracked submodule files
    rm -rf path_to_submodule
share|improve this answer
189  
"And by the way, is there a reason I can't simply git submodule rm whatever?" ? – abernier Jan 20 '11 at 19:04
17  
@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
74  
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
17  
Here's a bash script that removes a submodule, just create a git alias for submodule-rm ;) gist.github.com/2491147 – barraponto Apr 25 '12 at 17:27
26  
also need rm -rf .git\modules\submodule name? – rogerdpack May 22 '12 at 17:31
show 20 more comments

Simple steps

  1. Remove config entries:
    git config -f .git/config --remove-section submodule.$submodulepath
    git config -f .gitmodules --remove-section submodule.$submodulepath
  2. Remove directory from index:
    git rm --cached $submodulepath
  3. Commit
  4. Delete unused files:
    rm -rf $submodulepath
    rm -rf .git/modules/$submodulepath

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

Background

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

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 rebase HEAD first and git commit at the end, if you put this in a script.

Also have a look at an answer to Can I unpopulate a Git submodule?.

share|improve this answer
1  
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
2  
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
4  
+1 for explaining that git submodule init updates .git/config – RobM Feb 4 '12 at 19:21

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)

share|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 '12 at 22:27
Thanks! That's super helpful! I've ran into this quite a few times. – Johannes Fahrenkrug Mar 15 '12 at 14:52
9  
Really deserves to be mentioned in the topvoted answer, this is a crucial piece of information. Also, if you are adding this directory back as a regular-submodule, don't forget to delete the internal .git directory as well! – Anton I. Sipos Jun 29 '12 at 22:05
Thanks, I needed this too. @Anton, I agree, and I've edited the topvoted answer to add this info. – William Denniss Sep 23 '12 at 15:17
This should be upvoted more or added to the top answer, I had this same issue and finally figured it out, then found this when I was going to suggest the same thing. – Peter Zich Dec 16 '12 at 0:36
show 1 more comment

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.

share|improve this answer

To summarize, this is what you should do:

  1. Set path_to_submodule var (no trailing slash):

    path_to_submodule=path/to/submodule

  2. Delete the relevant line from the .gitmodules file:

    git config -f .gitmodules --remove-section submodule.$path_to_submodule

  3. Delete the relevant section from .git/config

    git config -f .git/config --remove-section submodule.$path_to_submodule

  4. Unstage and remove $path_to_submodule only from the index (to prevent losing information)

    git rm --cached $path_to_submodule

  5. Track changes made to .gitmodules

    git add .gitmodules

  6. Commit the superproject

    git commit -m "Remove submodule submodule_name"

  7. Delete the now untracked submodule files

    rm -rf $path_to_submodule

    rm -rf .git/modules/$path_to_submodule

share|improve this answer

You can use an alias to automate the solutions provided by others:

[alias]
  rms = "!f(){ git rm --cached \"$1\";rm -r \"$1\";git config -f .gitmodules --remove-section \"submodule.$1\";git config -f .git/config --remove-section \"submodule.$1\";git add .gitmodules; }; f"

Put that in your git config, and then you can do: git rms path/to/submodule

share|improve this answer
Thanks - this worked perfectly. You deserve more clicky. – Andy Triggs Jan 18 at 15:11

If the submodule was accidentally added because you added, committed and pushed a folder that was already a Git repository (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.

share|improve this answer

What I'm currently doing Dec 2012 (combines most of these answers):

oldPath="vendor/example"
git config -f .git/config --remove-section "submodule.${oldPath}"
git config -f .gitmodules --remove-section "submodule.${oldPath}"
git rm --cached "${oldPath}"
rm -rf "${oldPath}"              ## remove src (optional)
rm -rf ".git/modules/${oldPath}" ## cleanup gitdir (optional housekeeping)
git add .gitmodules
git commit -m "Removed ${oldPath}"
share|improve this answer
Good! You can handle submodules in separate-git-dir! – linquize Mar 9 at 14:16

I had to take John Douthat's steps one step further and cd into the submodule's directory, and then remove the Git repository:

cd submodule
rm -fr .git

Then I could commit the files as a part of the parent Git repository without the old reference to a submodule.

share|improve this answer
I had to do this too in order to get past a "fatal: Not a git repository:" error when trying to do the git rm --cache step. – RickDT Apr 1 at 15:48

Why not just git revert the commit that introduced the module ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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