Updated ADD_DEPENDENY docs with configuration to make gopkg.in work properly

pull/1064/head
Aaron Prindle 2017-02-01 11:39:10 -08:00
parent 02c7229568
commit 876bc22c9c
1 changed files with 2 additions and 0 deletions

View File

@ -18,6 +18,8 @@ Here is a rough set of steps that usually works to add a new dependency.
```shell
godep restore ./...
```
NOTE: If you encounter a HTTP 301 error, you may need to set the following:
`git config --global http.https://gopkg.in.followRedirects true`
1. `go get` your new dependency.
```shell