Skip to content

Instantly share code, notes, and snippets.

@serrasqueiro
Last active November 1, 2020 20:58
Show Gist options
  • Save serrasqueiro/0cf4021bd04f049d657b8cad24f3766b to your computer and use it in GitHub Desktop.
Save serrasqueiro/0cf4021bd04f049d657b8cad24f3766b to your computer and use it in GitHub Desktop.
Change URL in a git submodule

How to change a submodule URL

I wanted to change the name of a repository, from https to ssh. Repo was from github, well known:

Edit the corresponding url...

vi .gitmodules

Or:

  • git submodule set-url [--] path url
  • and then synch.
git submodule sync
git submodule sync update --init --recursive --remote requests
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment