1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

vpm: install directly from git/hg (#11166)

This commit is contained in:
mahdi ramezaan zaade
2021-08-13 13:58:30 +04:30
committed by GitHub
parent aa14fd1b05
commit 5bd602d0a7
3 changed files with 137 additions and 28 deletions

View File

@@ -2462,6 +2462,15 @@ v install [module]
v install ui
```
Modules could install directly from git or mercurial repositories.
```powershell
v install [--git|--hg] [url]
```
**Example:**
```powershell
v install --git https://github.com/vlang/markdown
```
Removing a module with v:
```powershell