You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
peter zhang 10ee2e0dad vendor: update xorm version for fix git clone error build with golang 1.8.1 (#4460) 8 years ago
..
github.com vendor: update xorm version for fix git clone error build with golang 1.8.1 (#4460) 8 years ago
golang.org/x vendor: update golang.org/x/crypto/ssh 8 years ago
gopkg.in models: add config options for XORM logger (#3183) 8 years ago
README vendor: check in vendors 8 years ago
vendor.json vendor: update xorm version for fix git clone error build with golang 1.8.1 (#4460) 8 years ago

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.