Skip to content

Instantly share code, notes, and snippets.

@lukipedio
Forked from MJeorrett/git_submodule_replacement.md
Last active September 30, 2021 15:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lukipedio/8e9f04d4f4c8ff0e748153ce433c86eb to your computer and use it in GitHub Desktop.
Save lukipedio/8e9f04d4f4c8ff0e748153ce433c86eb to your computer and use it in GitHub Desktop.
Replace directory with git submodule

These are the steps required to replace a directory with a submodule in git. Note: Assumes that you are currently working on branch called 'develop'

  1. Check out a new branch to make the changes on: git checkout -b creating-submodule
  2. delete directory to be replaced rm -rf path/of/directory/to/be/replaced
  3. git add . then git commit -m "removing local directory"
  4. add the submodule: git submodule add "https://github.com/repoName" path/of/directory/to/be/replaced
  5. git add . then git commit -m "adding submodule"
  6. delete the submodule directory if you don't do this git will throw a hissy when you try to checkout out develop to merge the changes in
  7. git checkout develop
  8. git merge creating-submodule
  9. pull the submodule back into the local repo: git submodule foreach git fetch --tags then git submodule update --init --recursive
  10. git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment