如何使用govendor删除未使用的依赖项

rseugnpd  于 2023-09-28  发布在  Go
关注(0)|答案(2)|浏览(123)

我想清理我的golang项目中的vendor文件夹。最好的办法是什么?

wh6knrhe

wh6knrhe1#

经过大量的研究,我发现有一个简单的单行命令可以做到这一点:
govendor remove +unused

fivyi3re

fivyi3re2#

如何使用这些命令?

go mod tidy --> removes dependencies from go.mod 
go mod vendor --> removes libraries from vendor

这将删除所有未使用的库

相关问题