Hi, I want to eventually start fixing bugs and I worry about misusing git (it's probably just my lack of experience).
The [relevant article](https://nim-lang.github.io/Nim/contributing.html) doesn't go into details about branching. I considered a couple of strategies and I am not sure which one the maintainers prefer: * Common first step: Create a `branch` off devel * Common last step: Make the PR * * * * Strategy 1: Just push the `branch` to the fork * Strategy 2: Merge `branch` with `upstream/devel`, then push to the fork * Strategy 3: Rebase to `upstream/devel`, then push to the fork
