mirror of https://github.com/gogits/gogs.git
Unknwon
f3a228ed61
|
8 years ago | |
---|---|---|
.. | ||
github.com | 8 years ago | |
golang.org/x | 8 years ago | |
gopkg.in | 8 years ago | |
README | 8 years ago | |
vendor.json | 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.