From c2c27bd174976e7e5646e3e1b2d5ea7bdd78819b Mon Sep 17 00:00:00 2001 From: Victor Hsieh Date: Wed, 12 Dec 2018 16:07:54 -0800 Subject: docs: fix step to create local branch from new origin The current step creates a local branch from the default origin, which is probably not my-origin in the instruction. --- docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/contributing.md') diff --git a/docs/contributing.md b/docs/contributing.md index be8eae8b3..bdd7822ea 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -48,7 +48,7 @@ so that there is agreement on high level approach and no duplication of work bet cd $GOPATH/src/github.com/google/syzkaller git remote add my-origin https://github.com/YOUR_GITHUB_USERNAME/syzkaller.git git fetch my-origin -git checkout -b my-branch master +git checkout -b my-branch my-origin/master ``` This adds git origin `my-origin` with your repository and checks out new branch `my-branch` based on `master` branch. -- cgit mrf-deployment