From 5424a5c1253de1c079c4d07490ae4ca6a5585ece Mon Sep 17 00:00:00 2001 From: Kun Deng Date: Mon, 15 Feb 2021 21:05:59 -0500 Subject: [PATCH] Update README.md --- Libs/README.md | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/Libs/README.md b/Libs/README.md index e69de29..069f1d7 100644 --- a/Libs/README.md +++ b/Libs/README.md @@ -0,0 +1,21 @@ +# Submodules + +Folders in this directory represent a snapshot of a GitHub repo. This method enables one +to link dependencies to their project in a generic way. These days most modern +languages have some way of distributing modules or components. C# has nuget. +Rust has cargo. Python has pip. And it goes on. + +Adding modules is easy + +```BASH +git submoudle add https://github.com/username/repo.git +``` + +That command links a dependency to your repo. + +It's not official until it's added + +```BASH +git add repo +``` +