How do I remove a Git submodule?
And by the way, is there a reason I can't simply do
git submodule rm whatever
?
|
How do I remove a Git submodule? And by the way, is there a reason I can't simply do
? |
||||
|
Since git1.8.3 (April 22d, 2013):
It stems from this patch:
This takes care if the (de)initialization steps ( It doesn't take care of the:
If you forget that last step, and try to add what was a submodule as a regular directory, you would get error message like:
|
|||||||||||||||||||
|
|
Via the page Git Submodule Tutorial: To remove a submodule you need to:
|
|||||||||||||||||||||
|
|
Simple steps
Please note: Background When you do So if you wish to remove the modules, but be able to restore it quickly, then do just this:
It is a good idea to do Also have a look at an answer to Can I unpopulate a Git submodule?. |
|||||||||||||||
|
|
In addition to the recommendations, I also had to |
|||||||||||||
|
|
You must remove the entry in
If you'll write on git's mailing list probably someone will do a shell script for you. |
||||
|
|
|
To summarize, this is what you should do:
|
||||
|
|
|
You can use an alias to automate the solutions provided by others:
Put that in your git config, and then you can do: |
|||
|
|
|
If the submodule was accidentally added because you added, committed and pushed a folder that was already a Git repository (contained
FWIW, I also removed the |
||||
|
|
|
What I'm currently doing Dec 2012 (combines most of these answers):
|
|||
|
|
|
I had to take John Douthat's steps one step further and
Then I could commit the files as a part of the parent Git repository without the old reference to a submodule. |
||||
|
git submodule deinit, see my answer below. – VonC Apr 23 at 5:58