update post style/format (codeblocks)

main
Dominic Reich 2 years ago
parent 93e4019b3f
commit 503b98906c
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -3,7 +3,7 @@ title = "Change git submodule URL"
summary = """Another thing I forget constantly when using git: summary = """Another thing I forget constantly when using git:
Changing the remote URL of a submodule""" Changing the remote URL of a submodule"""
date = "2022-12-01T20:08:17+01:00" date = "2022-12-01T20:08:17+01:00"
#lastmod = "" lastmod = "2022-12-13T06:37:11+01:00"
categories = ["computerstuff"] categories = ["computerstuff"]
tags = ["til-git","reminders"] tags = ["til-git","reminders"]
@ -12,10 +12,29 @@ tags = ["til-git","reminders"]
If the location (URL) of the submodule has changed, then you can simply: If the location (URL) of the submodule has changed, then you can simply:
1. Modify the <kbd>.gitmodules</kbd> file in the repo root to use the new URL. 1. Modify the <kbd>.gitmodules</kbd> file in the repo root to use the new URL.
2. Delete the submodule folder in the repo `rm -rf .git/modules/<submodule>`. 2. Delete the submodule folder in the repo
3. Delete the submodule folder in the working directory `rm -rf <submodule>`.
4. Run `git submodule sync`. ~~~console
5. Run `git submodule update`. $ rm -rf .git/modules/<submodule>
~~~
3. Delete the submodule folder in the working directory
~~~console
$ rm -rf <submodule>
~~~
4. Run
~~~console
$ git submodule sync
~~~
5. And run
~~~console
$ git submodule update
~~~
More complete info can be found elsewhere: More complete info can be found elsewhere:

Loading…
Cancel
Save