]> granicus.if.org Git - multimarkdown/commitdiff
add notes to git scripts
authorFletcher T. Penney <fletcher@fletcherpenney.net>
Thu, 12 Nov 2015 14:31:28 +0000 (09:31 -0500)
committerFletcher T. Penney <fletcher@fletcherpenney.net>
Thu, 12 Nov 2015 14:31:28 +0000 (09:31 -0500)
link_git_modules
update_git_modules

index e08639c69a09d0a9728906fe717299a3f8ce76b9..8f95346f069c2ac6add045958cf33b4b6be31b7b 100755 (executable)
@@ -1,5 +1,11 @@
 #!/bin/sh
 
+# This command sets up any git submodules in the project.
+# Generally, this only needs to be run once on a freshly cloned
+# project, but won't harm anything if run later, provided
+# you modify it to accomodate any submodules that should *NOT*
+# be on the `master` branch.
+
 git submodule init
 
 git submodule update
index ff78f96c3be5307afeb402d8da24d8b256c7274d..9d1c46bda939f70543ad644d888df2ccc73b7291 100755 (executable)
@@ -1,3 +1,7 @@
 #!/bin/sh
 
+# This command can be run any time to ensure that all submodules are on
+# the most recent commit for the configured branch, as set up
+# in the `link_git_modules` script.
+
 git submodule foreach git pull origin