Selaa lähdekoodia

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 vuotta sitten
vanhempi
commit
2737b2570a
1 muutettua tiedostoa jossa 3 lisäystä ja 3 poistoa
  1. 3 3
      dev/git.commit.template

+ 3 - 3
dev/git.commit.template

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