See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope> is optional
| #! /bin/bash | |
| # | |
| # About: Unified shell script to simplify AWS CloudShell/Cloud9 tooling bootstraping | |
| # Author: Davi Garcia (davivcgarcia) | |
| # | |
| # Usage: $ source <(curl -sL https://bit.ly/aws-cloud-bootstrapper) | |
| # | |
| # | |
| # Creates directory structure in the persistent storage mount |
requires
jqCLI
oc get namespaces -o json | jq '[.items[] | select((.metadata.name | startswith("openshift") | not) and (.metadata.name | startswith("kube-") | not) and .metadata.name != "default" and (true)) | .metadata.name ]'
| # Hello, and welcome to makefile basics. | |
| # | |
| # You will learn why `make` is so great, and why, despite its "weird" syntax, | |
| # it is actually a highly expressive, efficient, and powerful way to build | |
| # programs. | |
| # | |
| # Once you're done here, go to | |
| # http://www.gnu.org/software/make/manual/make.html | |
| # to learn SOOOO much more. |