See how a minor change to your commit message style can make you a better programmer.
Format: <type>(<scope>): <subject>
<scope>
is optional
# List all subdirectories | |
SUBDIRS := $(wildcard */) | |
.PHONY: all | |
all: | |
@echo "Available commands: run, dev, test, update, format, build, add <package>, and remove <package>" | |
# Customize this per project | |
.PHONY: run | |
run: |