瀏覽代碼

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.