This repository has been archived by the owner on Feb 26, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 452
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Edward Muller
committed
May 25, 2016
1 parent
51740bb
commit c02e668
Showing
2 changed files
with
11 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## Why do I need to check in `vendor/`? | ||
|
||
godep's primary concern is to allow you to repeatably build your project. Your | ||
dependencies are part of that project. Without them it won't build. Not | ||
committing `vendor/` adds additional external dependencies that are outside of | ||
your control. In Go, fetching packages is tied to multiple external systems | ||
(DNS, web servers, etc). Over time other developers or code hosting sites may | ||
discontinue service, delete code, force push, or take any number of other | ||
actions that may make a package unreachable. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters