Unknwon 6ec859f2b0 webhook: send secret with SHA256 HMAC hex digest (#3692) 7 years ago
..
github.com 6ec859f2b0 webhook: send secret with SHA256 HMAC hex digest (#3692) 7 years ago
golang.org 1381f0f28e vendor: check in missing dependency 7 years ago
gopkg.in f3a228ed61 vendor: update gopkg.in/macaron.v1 7 years ago
README 2fd69f13d9 vendor: check in vendors 7 years ago
vendor.json 6ec859f2b0 webhook: send secret with SHA256 HMAC hex digest (#3692) 7 years ago

README

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