Remove merges from git log command output

This commit is contained in:
Ismo Vuorinen
2016-08-04 17:14:38 +03:00
parent 2a88069212
commit 94cefa42a8

View File

@@ -111,7 +111,7 @@ echo $NEW_VERSION > $FILE_VERSION
# Create our changelog # Create our changelog
echo "## $NEW_VERSION ($NOW)" > tmpfile echo "## $NEW_VERSION ($NOW)" > tmpfile
git log --pretty=format:" - %H %ad | %s%d [%an]" --date=short "$BASE_STRING"...HEAD >> tmpfile git log --pretty=format:" - %H %ad | %s%d [%an]" --date=short --no-merges "$BASE_STRING"...HEAD >> tmpfile
echo "" >> tmpfile echo "" >> tmpfile
echo "" >> tmpfile echo "" >> tmpfile
cat $FILE_CHANGELOG >> tmpfile cat $FILE_CHANGELOG >> tmpfile