From 25638bec456d70773feaf6c5086f7b0a6febb459 Mon Sep 17 00:00:00 2001 From: agkhall <142054879+agkhall@users.noreply.github.com> Date: Wed, 15 Jan 2025 22:00:53 -0500 Subject: [PATCH] Minor clarification Because of the `cd DbConnector/` in the previous code section, it was unclear which location to run the `git submodule init` and `git submodule update` commands. --- book/07-git-tools/sections/submodules.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/07-git-tools/sections/submodules.asc b/book/07-git-tools/sections/submodules.asc index 0d667462b..188ff6408 100644 --- a/book/07-git-tools/sections/submodules.asc +++ b/book/07-git-tools/sections/submodules.asc @@ -166,7 +166,7 @@ $ ---- The `DbConnector` directory is there, but empty. -You must run two commands: `git submodule init` to initialize your local configuration file, and `git submodule update` to fetch all the data from that project and check out the appropriate commit listed in your superproject: +You must run two commands from the main project: `git submodule init` to initialize your local configuration file, and `git submodule update` to fetch all the data from that project and check out the appropriate commit listed in your superproject: [source,console] ----