aboutsummaryrefslogtreecommitdiffstats
path: root/docs/contributing.md
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2018-10-10 19:26:51 +0200
committerGitHub <noreply@github.com>2018-10-10 19:26:51 +0200
commit724151015756780b9b79d5c384a3af96c41ac209 (patch)
tree492b1d57943077cac97543340defd660f1232efb /docs/contributing.md
parentba8cd6d708b97d6be4f9164758b6a7c690d252b2 (diff)
Update contributing.md
fix formatting
Diffstat (limited to 'docs/contributing.md')
-rw-r--r--docs/contributing.md12
1 files changed, 8 insertions, 4 deletions
diff --git a/docs/contributing.md b/docs/contributing.md
index 0c95c0729..c59b4f411 100644
--- a/docs/contributing.md
+++ b/docs/contributing.md
@@ -56,10 +56,14 @@ This adds git origin `my-origin` with your repository and checks out new branch
[here](https://github.com/golang/go/issues/25161) and
[here](https://github.com/golang/go/issues/26228) for details). A
simple way to do this is:
- ```go get golang.org/dl/go1.10
- go1.10 download
- # Default download path is here.
- ~/sdk/go1.10/bin/go fmt [target files]```
+
+```
+go get golang.org/dl/go1.10
+go1.10 download
+# Default download path is here.
+~/sdk/go1.10/bin/go fmt [target files]
+```
+
- Push the commit to your fork on github with `git push my-origin my-branch`.
- Nagivate to [github.com/google/syzkaller](https://github.com/google/syzkaller) and you should see green `Compare & pull request` button, press it. Then press `Create pull request`. Now your pull request should show up on [pull requests page](https://github.com/google/syzkaller/pulls).
- If you don't see `Create pull request` button for any reason, you can create pull request manually. For that nagivate to [pull requests page](https://github.com/google/syzkaller/pulls), press `New pull request`, then `compare across forks` and choose `google/syzkaller`/`master` as base and `YOUR_GITHUB_USERNAME/syzkaller`/`my-branch` as compare and press `Create pull request`.