From 9ccdb271d7476a18e51432f9dc9d6a0408a8cc7e Mon Sep 17 00:00:00 2001 From: scbj Date: Wed, 2 Oct 2024 15:35:19 +0200 Subject: [PATCH] added entry for git submodule usage --- docs/git.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 docs/git.md diff --git a/docs/git.md b/docs/git.md new file mode 100644 index 0000000..7442d36 --- /dev/null +++ b/docs/git.md @@ -0,0 +1,19 @@ +# summary on some steps in the git workflow + +## Table of contents + +- [git submodule](#git-submodule) + + +## git submodule +```bash +# do it manually +git submodule init +git submodule update + +# do it all at once +git clone --recurse-submodules + +# if repo is already cloned +git submodule update --init --recursive +``` \ No newline at end of file