This repository was archived by the owner on Mar 6, 2020. It is now read-only.

Description
Could you add a summary of the differences with the standard go tool?
Here is the two main differences I noted:
- The GOPATH is automatically determined depending on the current working directory by searching directories src or vendor/src.
- The tool makes sure that deleted packages are not used anymore, even in their compiled form, unlike the standard
go tool that still uses remaining .a files.
Regarding the first difference, which is the main selling point of gb, I'm wondering why it couldn't be implemented as a wrapper around the standard tool. This is what godep does, in some way. But I'm probably missing something :)
Even if it cannot be implemented as a wrapper, it would be great to reuse as much code as possible from the standard library, instead of reimplementing the whole tool?
Regarding the second difference, is there a reason for not fixing the behavior directly in the standard go tool?