gogs/vendor
unknwon 00a3e368b4
vendor: update to fix tests with Go 1.12.x
- github.com/smartystreets/goconvey
- github.com/jtolds/gls
2019-07-28 15:56:22 -07:00
..
github.com vendor: update to fix tests with Go 1.12.x 2019-07-28 15:56:22 -07:00
golang.org/x vendor: update golang.org/x/crypto/ssh 2017-03-01 21:33:58 -05:00
gopkg.in vendor: update 2018-12-16 19:48:34 -05:00
README vendor: check in vendors 2017-02-09 19:48:13 -05:00
vendor.json vendor: update to fix tests with Go 1.12.x 2019-07-28 15:56:22 -07:00

README

1. Delete package directory from vendor when developing new code of dependency.
2. After commit on dependency, run:
	govendor update <import path>
3. Introduce a new dependency, run:
	govendor add +vendor <import path>
4. To update all deependencies, delete all packages from vendor, and run:
	govendor add +vendor +external
5. Too hard.