Golang Note

Golang Install:

Go环境配置(2013)

https://github.com/golang/go/wiki/GOPATH

Installing Go And Your Workspace

本地建立DOC服务

命令: godoc -http=:8080

网址: http://localhost:8080/

Install tour on local: https://github.com/golang/tour

$ go tool tour

 http://127.0.0.1:3999

深入学习golang(2)—channel

Golang channels tutorial

https://www.oschina.net/translate/golang-channels-tutorial

http://www.moomn.com/archives/37

ardanlabs/gotraining (GitHub)

 

 

Git

git clone https://github.com/[USER]/docker.git docker-master
git clone https://github.com/[USER]/docker.git --branch v1.2.0 docker-1.2.0

git config --local user.name  "FirstName LastName"
git config --local user.email "[email protected]"
git config --local -l

 

 

 

 

 

 

猜你喜欢

转载自jnh.iteye.com/blog/2341369