Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Startup a service that depends on amino
./bin/myservice --conf=/path/to/my/conf
Startup a service using the default conf path
./bin/myservice
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
#!/bin/bash | |
# Generates changelog day by day | |
echo "CHANGELOG" | |
echo "=====================================" | |
git log --no-merges --format="%cd" --date=short $1 | sort -u -r | while read DATE ; do | |
echo | |
echo $DATE | |
echo "---------------------------------" | |
git log --no-merges --format=" * %s%+b" --since="$DATE 00:00:00" --until="$DATE 24:00:00" | sed -e '/ \* /!s/^/ /g' | |
done |