From 466f44f94ad6609ed5174c77efad6915fc2e51a7 Mon Sep 17 00:00:00 2001 From: "Begerad, Stefan" Date: Fri, 21 Oct 2022 15:19:17 +0200 Subject: [PATCH] feat: add to README the instruction: git submodule update --remote --merge --- README.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index cdf1a6c..5d0890e 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ git clone --recurse-submodules ``` If you cloned this repository initially without submobules, -you can always update the content of submodules with the git submodule update command. +you can always update the content of submodules with the git +`submodule update` command. Execute the command from the main project directory: ``` @@ -22,6 +23,15 @@ git submodule update --init --recursive The ```--init``` flag initializes the submodules before the update. The ```--recursive``` option searches for nested submodules and ensures they are updated too. +If new commits are available for submodules, +you can always update the **remote** content of submudlues with the git +`submodule update` command. +Execute the command from the main project directory: + +``` +git submodule update --remote --merge +``` + ## Python Dependencies In order to generate the documentation, first create a Python 3 virtual environment using the