I have this git repository which contains to folders binary-search and poker: http://github.com/soulnafein/code-katas
I would like to make this folders two submodules and I would like to keep the change history. How can I do that?
|
I have this git repository which contains to folders binary-search and poker: http://github.com/soulnafein/code-katas I would like to make this folders two submodules and I would like to keep the change history. How can I do that? |
||||
|
|
The general idea is to use 'git filter-branch' and the following steps: 1) Create a submodule using --subdirectory-filter of
See this SO question for more on this step. 2) Create a superproject using an index filter of
3) Commit the submodule to the latest version of the superproject. See Detach subdirectory into separate git repository for a practical example. Each submodule will keep its history.
If you do not need to have previous history linked to the new submodules, you can follow the steps mentioned above.
|
||||
|
|
|
Today there's a better way of doing this: See this answer. |
|||
|
|