action/
can be used as libraries.action/
package replaces cmd/
glide install
for a hash failures providing a warning. Failed hash check is currently too aggressive.glide up
on Windows unable to detect dependencies when GOPATH and GOROOT on a different drive or when GOROOT ends in a path separator.glide up
stalling on Windows due to POSIX path separators and path list separators being used.glide install
command installs the pinned dependencies from the glide.lock
file while glide update
updates the tree and lockfile. Most people should use glide install
unless they want to intentionally updated the pinned dependencies. glide install
is able to use concurrency to more quickly install update.get
pins dependencies by default and allows a version to be passed in. For example, glide get github.com/Masterminds/convert#^1.0.0
will fetch github.com/Masterminds/convert
with a version of ^1.0.0
.GOPATH
is now opt-in.glide get
to retrieve insecure packages with --insecure
flag.-f
flag.glide get
.glide update
to only update a specific package.glide list
now displays if a pkg is in vendor, GOPATH, or missing.glide tree
command to inspect the code and see the imported packages.glide list
to see an alphabetized list of imported projects.Glide .5 is a major update breaking some backwards compatability with previous releases.
glide up
is now recursive and walks installed packages if there is no vendor directory. Use the --no-recursive flag to skip this.glide guess
can guess dependencies for an existing repo. (HUGE thanks to dz0ny)