Skip to content

Instantly share code, notes, and snippets.

@seventhskye
Created November 25, 2015 13:41
Show Gist options
  • Save seventhskye/6d02bcf12dec035b954c to your computer and use it in GitHub Desktop.
Save seventhskye/6d02bcf12dec035b954c to your computer and use it in GitHub Desktop.
A Makefile for running an Infrastructure managed with Continuous Integration tools.
DATE = $(shell date)
release:
@echo "Enter commit message:"
@read REPLY; \
echo "${DATE} - $$REPLY" >> CHANGELOG; \
git add --all; \
git commit -m "$$REPLY"; \
git push
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment