v/.github/PULL_REQUEST_TEMPLATE

18 lines
635 B
Plaintext
Raw Normal View History

2019-06-26 13:53:42 +02:00
Please title your PR as follows: `time: fix foo bar`. Always start with the thing you are fixing, then describe the fix.
2019-06-26 15:54:58 +02:00
Don't use past tense (e.g. "fixed foo bar").
2019-06-26 13:42:56 +02:00
Explain what your PR does and why.
2019-06-26 13:39:38 +02:00
Do not use # to generate C code. This feature will be removed in a couple of days.
2019-06-26 13:42:56 +02:00
Squash commits into one if they refer to the same thing. Use `git rebase -i` for that.
2019-06-26 13:39:38 +02:00
2019-06-26 13:42:56 +02:00
Before submitting a PR, please run the tests with `make test`, and make sure V can still compile itself. Run this twice:
2019-06-26 13:39:38 +02:00
./v -o v
./v -o v
2019-06-26 13:53:42 +02:00
I try to process PRs as soon as possible. They should be handled within 24 hours.
2019-06-26 13:39:38 +02:00
Thanks a lot for your contribution!