github: Improve the PR template

This commit is contained in:
James Shubin
2017-09-09 15:03:53 -04:00
parent 69f479b67e
commit dbcabc6517

View File

@@ -5,6 +5,15 @@
or:
```topic, topic2: Capitalized message with no trailing period```
* golang code must be formatted according to the standard, please run:
```
make gofmt # formats the entire project correctly
```
or format a single golang file correctly:
```
gofmt -w yourcode.go
```
* please rebase your patch against current git master:
```
git checkout master