$ git config --global url."git@github.com:" .insteadOf "https://github.com/"
$ cat ~/.gitconfig
[url "git@github.com:"]
insteadOf = https://github.com/
fork
http://github.com/awsome-org/tool ------> http://github.com/awesome-you/tool
$ go get http://github.com/awesome-org/tool
$ git remote add awesome-you-fork http://github.com/awesome-you/tool
$ git pull --rebase awesome-you-fork
$ git push awesome-you-fork
cd $GOPATH
mkdir -p {src,bin,pkg}
mkdir -p src/github.com/awesome-org/
cd src/github.com/awesome-org/
git clone git@github.com:awesome-you/tool.git # OR: git clone https://github.com/awesome-you/tool.git
cd tool/
go get ./...
link