mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-03 04:20:01 +02:00
Add dep plugin
This commit is contained in:
parent
52fdae4b3d
commit
a85760d457
3 changed files with 91 additions and 0 deletions
20
plugins/dep/README.md
Normal file
20
plugins/dep/README.md
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
# Dep plugin
|
||||
|
||||
This plugin adds completion for the [Dep - Dependency management for Go](https://golang.github.io/dep/),
|
||||
as well as some aliases for common Dep commands.
|
||||
|
||||
To use it, add `dep` to the plugins array in your zshrc file:
|
||||
|
||||
```zsh
|
||||
plugins=(... dep)
|
||||
```
|
||||
|
||||
## Aliases
|
||||
|
||||
| Alias | Command | Description |
|
||||
|-------|-------------------------------------------|---------------------------------------------------------------------------------------------------------------|
|
||||
| depc | `dep check` | Check if imports, `Gopkg.toml`, and `Gopkg.lock` are in sync |
|
||||
| deps | `dep status` | Report the status of the project dependencies |
|
||||
| depe | `dep ensure` | Ensure a dependency is safely vendored in the project |
|
||||
| depa | `dep ensure -add` | Add new dependencies, or populate `Gopkg.toml` with constraints for existing dependencies |
|
||||
| depu | `dep ensure -update` | update the named dependencies (or all, if none are named) in Gopkg.lock to the latest allowed by `Gopkg.toml` |
|
||||
Loading…
Add table
Add a link
Reference in a new issue