1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 01:24:55 +02:00
tldr/pages/common/dep.md
2019-06-09 01:54:24 -03:00

24 lines
484 B
Markdown

# dep
> Tool for dependency management in Go projects.
> More information: <https://golang.github.io/dep>.
- Initialize the current directory as the root of a Go project:
`dep init`
- Install any missing dependencies (Scans Gopkg.toml and your .go files):
`dep ensure`
- Report the status of the project's dependencies:
`dep status`
- Add a dependency to the project:
`dep ensure -add {{package_url}}`
- Update the locked versions of all dependencies:
`dep ensure -update`