See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
See how a minor change to your commit message style can make a difference.
git commit -m"<type>(<optional scope>): <description>" \ -m"<optional body>" \ -m"<optional footer>"
#!/bin/bash | |
BOLD=$(tput bold) | |
NORMAL=$(tput sgr0) | |
cat << "EOF" | |
__ ____ ___ _____ | |
\ \ /\ / / _` \ \ / / _ \ | |
\ V V / (_| |\ V / __/ | |
\_/\_/ \__,_| \_/ \___| |
version: "3.9" | |
services: | |
traefik: | |
image: "traefik:v2.4" | |
container_name: "traefik" | |
command: | |
#- "--log.level=DEBUG" | |
- "--api.insecure=true" | |
- "--providers.docker=true" |