Forráskód Böngészése

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 éve
szülő
commit
0dab746e28
1 módosított fájl, 3 hozzáadás és 3 törlés
  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.