From 0f42eb025a642199242be3a5f35e7455d0226e50 Mon Sep 17 00:00:00 2001 From: Chuansheng Lu Date: Tue, 26 Mar 2019 11:56:30 +0800 Subject: [PATCH] [Misc] Add .github/commit_message_template Summary: - Added .github/commit_message_template file - Developers are expected to use following command to create any new Git commits `git commit -t .github/commit_message_template` Test Plan: only review needed Reviewed-by: kuaiwei, sanhong Issue: #18 --- .github/commit_message_template | 35 +++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/commit_message_template diff --git a/.github/commit_message_template b/.github/commit_message_template new file mode 100644 index 0000000..34f690b --- /dev/null +++ b/.github/commit_message_template @@ -0,0 +1,35 @@ +[] +# +# can be: +# GC Dragonwell specific JVM GC changes +# Runtime Dragonwell specific JVM runtime changes +# JIT Dragonwell Just-in-Time compiler changes +# JFR JFR related +# JWarmUp JWarmUp related +# Misc Miscellaneous changes, such as Makefile, scripts +# + +Summary: +# +# Detailed description of the changes +# Problems fixed by this change +# New features added by this change +# + +Test Plan: +# +# Please explain +# - Approaches used +# - Testsuites selected. +# + +Reviewed-by: +# +# For code changes, at least two reviewers required +# + +Issue: +# +# Link of the fixed issue, can be full URL or github bug id (e.g. #123) +# + -- GitLab