You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 26, 2019. It is now read-only.
I used to work with import path rewriting with godep and I recenlty switched to storing my dependencies in vendor.
I guess (not 100% sure) godep also took care of removing dependencies which I no longer used in my code from the workspace but it seems this is no longer the case? I could not find anything in the README regarding this functionality. How can I do that cleanup (besides deleting Godep/Godeps.json and vendor and and running godep save again)?
The text was updated successfully, but these errors were encountered:
The restore downloads and checks out your project's deps into $GOPATH. This makes it so that when you save again you get the same version of the deps re-saved. Anything that is no longer necessary won't be saved. Also any new tweaks to the save process are applied if you are using the latest godep (perms, stricter package matching, etc). I suggest upgrading to the latest version of godep before doing any of this.
I used to work with import path rewriting with godep and I recenlty switched to storing my dependencies in
vendor
.I guess (not 100% sure) godep also took care of removing dependencies which I no longer used in my code from the workspace but it seems this is no longer the case? I could not find anything in the README regarding this functionality. How can I do that cleanup (besides deleting Godep/Godeps.json and vendor and and running
godep save
again)?The text was updated successfully, but these errors were encountered: