You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -261,6 +273,20 @@ Use imperative, present tense (Add, not ~Added~), capitalize first letter of
261
273
summary, no dot at the and. The body and footer are optional. Relevant GitHub
262
274
issues should be referenced in the footer in the form `Fixes #123, fixes #456`.
263
275
276
+
#### Branches
277
+
278
+
All PRs should be at the HEAD, that is to say we use merge commits with clean history. If not they should be rebased on master, do not merge master into your branches. Do not create branches that already exist, please use a new name. Branches are deleted upon merging. Thank you.
279
+
280
+
```sh
281
+
git fetch -vp
282
+
git checkout my-branch
283
+
git rebase origin/master
284
+
```
285
+
286
+
We also maintain an author merges policy. We will approve your pr then you can merge it.
287
+
288
+
Additionally we ask that you do not squash your prs or introduce a large number of commits per feature. If your pr becomes too large we may ask you to split the functionality out into more than one pr.
289
+
264
290
### Changelog
265
291
266
292
Changelog is generated automatically based on merged PRs using
0 commit comments