mirror of https://github.com/gogs/gogs.git
* Fix packaging * Fix macaron vendor sha Revision 8be5635c28f40a85ce8e8f65c6118b4ee4e548e9 does not exist * Add build dependency for centos |
||
---|---|---|
.. | ||
github.com | ||
golang.org/x | ||
gopkg.in | ||
README | ||
vendor.json |
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.