style(unitproc:bktemp-initGitRepo):Comments
authorSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 23 Mar 2021 12:35:47 +0000 (12:35 +0000)
committerSteven Baltakatei Sandoval <baltakatei@gmail.com>
Tue, 23 Mar 2021 12:35:47 +0000 (12:35 +0000)
unitproc/bktemp-initGitRepo

index 7a532faaa976144d263bf2eb4d01e407f8300421..a222ad39d73661fca21d73d827cc093c8f2bb8b7 100644 (file)
@@ -1,6 +1,10 @@
 #!/bin/bash
 # Desc: Initializes a git repository
 
+#==BEGIN Define script parameters==
+#==END Define script parameters==
+
+#===BEGIN Declare local script functions===
 yell() { echo "$0: $*" >&2; }      #o Yell, Die, Try Three-Fingered Claw technique
 die() { yell "$*"; exit 111; }     #o Ref/Attrib: https://stackoverflow.com/a/25515370
 try() { "$@" || die "cannot $*"; } #o
@@ -73,8 +77,9 @@ initGitRepo() {
     popd || exit 1;
     #==END create and populate git repository==
 } # Init Git Repository
+#===END Declare local script functions===
 
-#==BEGIN test code
+#==BEGIN sample code
 tmpDir=/tmp/"$(date +%Y%m%dT%H%M%S%z)";
 mkdir -p "$tmpDir";
 pushd "$tmpDir" || exit 1;
@@ -87,4 +92,7 @@ initGitRepo "$repoURL" "$repoDir" "$remoteName" "$branchName";
 unset repoURL repoDir remoteName branchName;
 
 yell "STATUS:Done.";
-#==END test code
+#==END sample code
+
+# Author: Steven Baltaktei Sandoval
+# License: GPLv3+