diff options
author | Andrey Nering <andrey.nering@gmail.com> | 2016-11-17 17:35:48 -0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-17 17:35:48 -0200 |
commit | 91953ae9b421300eef79d58891dec7f2026e5d53 (patch) | |
tree | 6b2a81d58d6933fbb238d530091eaa959ee95bad | |
parent | d8843122236a5e0d0b4fcb0cd6305d3f1873306d (diff) | |
parent | 39b3fcad1ddbef541affdc0a1b3e63606da0c85f (diff) | |
download | gitea-91953ae9b421300eef79d58891dec7f2026e5d53.tar.gz gitea-91953ae9b421300eef79d58891dec7f2026e5d53.zip |
Merge pull request #187 from strk/vendor
Add vendoring section
-rw-r--r-- | CONTRIBUTING.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 1609db2a8a..3f6ded7e16 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -57,6 +57,17 @@ After running for a while, the command should print ``` ALL TESTS PASSED ``` +## Vendoring + +We keep a cached copy of dependencies within the `vendor/` directory, +managing updates via [govendor](http://github.com/kardianos/govendor). + +Pull requests should only include `vendor/` updates if they are +part of the same change, be it a bugfix or a feature addition. + +The `vendor/` update needs to be justified as part of the PR description, +and must be verified by the reviewers and/or merger to always reference +an existing upstream commit. ## Code review |