From 66ba4b5b507fd182a35f0b3310d22fe9ee72e51c Mon Sep 17 00:00:00 2001 From: Ray Speth Date: Tue, 3 Apr 2018 09:22:04 -0400 Subject: [PATCH] [Doc] Add update of git submodules to code checkout instructions --- doc/sphinx/compiling/source-code.rst | 3 +++ 1 file changed, 3 insertions(+) diff --git a/doc/sphinx/compiling/source-code.rst b/doc/sphinx/compiling/source-code.rst index 565ab0d91..6e281dbeb 100644 --- a/doc/sphinx/compiling/source-code.rst +++ b/doc/sphinx/compiling/source-code.rst @@ -15,6 +15,7 @@ Stable Release Then, check out the tag of the most recent stable version:: git checkout tags/v2.4.0 + git submodule update A list of all the tags can be shown by:: @@ -37,6 +38,7 @@ Beta Release * **Option 1**: Check out the tag with the most recent beta release:: git checkout tags/v2.4.0b1 + git submodule update Note that the most recent beta version might be older than the most recent stable release. A list of all the tags, including stable and beta versions can @@ -48,6 +50,7 @@ Beta Release next minor release of the stable version:: git checkout 2.4 + git submodule update This branch has all the work on the 2.4.x version of the software.