gogs/vendor
Unknwon 6ec859f2b0
webhook: send secret with SHA256 HMAC hex digest (#3692)
2017-02-24 12:23:19 -05:00
..
github.com webhook: send secret with SHA256 HMAC hex digest (#3692) 2017-02-24 12:23:19 -05:00
golang.org/x vendor: check in missing dependency 2017-02-13 20:58:53 -05:00
gopkg.in vendor: update gopkg.in/macaron.v1 2017-02-19 15:51:10 -05:00
README vendor: check in vendors 2017-02-09 19:48:13 -05:00
vendor.json webhook: send secret with SHA256 HMAC hex digest (#3692) 2017-02-24 12:23:19 -05: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.