From 139b5e9831f13b0afde938675fecf1b33dc4eb2f Mon Sep 17 00:00:00 2001 From: Bram Matthys Date: Fri, 23 Nov 2012 19:52:07 +0100 Subject: [PATCH] Update ./createchangelog to make it only show changes on default branch. --- createchangelog | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/createchangelog b/createchangelog index 89514c7f6..9fb6e29ee 100755 --- a/createchangelog +++ b/createchangelog @@ -5,6 +5,7 @@ # changelog too much. hg log -r a673dd0f7b37: --style changelog --template '[{date|shortdate}] {author} ({node|short}):\n- {desc}\n\n' \ --X 'doc/unreal32docs.*.html' -X 'doc/help.*.conf' -X 'doc/example.*.conf' -X 'include/version.h'|sed 's/^- - /- /g' >Changes +-b default -X 'doc/unreal32docs.*.html' -X 'doc/help.*.conf' -X 'doc/example.*.conf' -X 'include/version.h'|\ +sed 's/^- - /- /g' >Changes echo "Done. File 'Changes' now contains the full version history"