glide筆記
https://github.com/Masterminds/glide
安裝
  | 
  | 
Usage
source code需要放在gopath下1234567$ glide create                            # Start a new workspace$ open glide.yaml                         # and edit away!$ glide get github.com/Masterminds/cookoo # Get a package and add to glide.yaml$ glide install                           # Install packages and dependencies# work, work, work$ go build                                # Go tools work normally$ glide up                                # Update to newest versions of the package
get 3rd party library and all their dependencies12glide get --all-dependencies <path>glide up --all-dependencies