From f87a19a15c87095492cd2e01df4123d1e0b3a846 Mon Sep 17 00:00:00 2001 From: Scott McClellan Date: Wed, 27 Apr 2016 16:57:16 -0700 Subject: [PATCH] Minor changes to CONTIRBUTING.md instructions (#1403) --- CONTRIBUTING.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 537c02446..958999c57 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -3,11 +3,11 @@ If you do not have a working Golang environment setup please follow [Golang Installation Guide](./INSTALLGO.md). ### Setup your Minio Github Repository -Fork [Minio upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL and pass it to ``go get`` command. Go uses git to clone a copy into your project workspace folder. +Fork [Minio upstream](https://github.com/minio/minio/fork) source repository to your own personal repository. Copy the URL for minio from your personal github repo (you will need it for the `git clone` command below). ```sh $ mkdir -p $GOPATH/src/github.com/minio $ cd $GOPATH/src/github.com/minio -$ git clone https://github.com/$USER_ID/minio +$ git clone $ cd minio ```