From 724151015756780b9b79d5c384a3af96c41ac209 Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Wed, 10 Oct 2018 19:26:51 +0200 Subject: Update contributing.md fix formatting --- docs/contributing.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'docs/contributing.md') 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`. -- cgit mrf-deployment