Created
November 25, 2015 13:41
-
-
Save seventhskye/6d02bcf12dec035b954c to your computer and use it in GitHub Desktop.
A Makefile for running an Infrastructure managed with Continuous Integration tools.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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