Fork [Minio upstream](https://github.com/Minio-io/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.
@if test ! -e $(GOPATH)/src/github.com/minio-io/minio;thenecho"Creating symlink to $(GOPATH)/src/github.com/minio-io/minio"&& ln -s $(PWD)$(GOPATH)/src/github.com/minio-io/minio;fi
checkgopath:
@echo "Checking project in ${MINIOPATH}"
@if [ ! -d ${MINIOPATH}];thenecho"Project not found in $GOPATH, please follow instructions provided at https://github.com/Minio-io/minio/blob/master/CONTRIBUTING.md#setup-your-minio-github-repository"&&exit 1;fi
getdeps:checkdeps
getdeps:checkdepscheckgopath
@go get github.com/tools/godep &&echo"Installed godep"
@go get golang.org/x/tools/cmd/cover &&echo"Installed cover"