Skip to content

Instantly share code, notes, and snippets.

@pieman72
pieman72 / git.makefile
Last active August 29, 2015 14:16
A starter makefile with git recipes
# Colorize output
COLORS:=$(shell tput colors 2> /dev/null)
ifeq ($(COLORS), 256)
COLOR_RESET=\033[0;39;49m
COLOR_BOLD=\033[1m
COLOR_ULINE=\033[4m
COLOR_BOLD_OFF=\033[0;21m
COLOR_ULINE_OFF=\033[0;24m
COLOR_NORM=\033[0;39m
COLOR_GREN=\033[38;5;118m