gogs/vendor
Unknwon 5129ed215e
vendor: update github.com/go-macaron/session (#5469)
Fix security flaw reported by c957861129d62331c5704d2f04d11e41.
2018-10-24 09:59:07 -04:00
..
github.com vendor: update github.com/go-macaron/session (#5469) 2018-10-24 09:59:07 -04:00
golang.org/x vendor: update golang.org/x/crypto/ssh 2017-03-01 21:33:58 -05:00
gopkg.in vendor: update gopkg.in/ini.v1 2018-06-17 09:08:21 +08:00
README vendor: check in vendors 2017-02-09 19:48:13 -05:00
vendor.json vendor: update github.com/go-macaron/session (#5469) 2018-10-24 09:59:07 -04: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.