ソースを参照

Remove '###' from git commit template section headers (#509)

Motivation:

It seems like git removes any lines starting with a `#`, so we'd lose
lines from commits following the template.

Modifications:

Remove the Markdown formatting from the commit template.

Result:

Commits using our template won't have lines removed by git.
George Barnett 6 年 前
コミット
0dab746e28
1 ファイル変更3 行追加3 行削除
  1. 3 3
      dev/git.commit.template

+ 3 - 3
dev/git.commit.template

@@ -1,14 +1,14 @@
 One line description of your change
 
-### Motivation:
+Motivation:
 
 Explain here the context, and why you're making that change.
 What is the problem you're trying to solve.
 
-### Modifications:
+Modifications:
 
 Describe the modifications you've done.
 
-### Result:
+Result:
 
 After your change, what will change.