aboutsummaryrefslogtreecommitdiff
path: root/docs/guides/adding-new-community-modules.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/guides/adding-new-community-modules.md')
-rw-r--r--docs/guides/adding-new-community-modules.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/guides/adding-new-community-modules.md b/docs/guides/adding-new-community-modules.md
new file mode 100644
index 0000000..42c429f
--- /dev/null
+++ b/docs/guides/adding-new-community-modules.md
@@ -0,0 +1,9 @@
+
+
+If there are any new modules to be added, use C<git submodule> to add
+its repo to the modules/ directory. Also add the module directory
+name to the C<modules/MODULES.txt> file.
+
+ $ git submodule add git@github.com:user/acme-example modules/acme-example
+ $ echo acme-example >>modules/MODULES.txt
+ $ git commit . -m "Added acme-example to installed modules."