nitpm: keep going if a package is already installed
[nit.git] / share / man / picnit.md
1 # NAME
2
3 picnit - Nit package manager
4
5 # SYNOPSIS
6
7 picnit [--help] [--verbose] <command> [<args>]
8
9 # OPTIONS
10
11 ### `-h`, `--help`
12
13 Show the help message.
14
15 ### `-v`, `--verbose`
16
17 Print more information, may be useful for debugging.
18
19 # COMMANDS
20
21 ### install
22
23 Install a package by searching for its name or directly from a Git repository URL.
24
25         picnit install hello_picnit
26         picnit install https://gitlab.com/xymus/hello_picnit.git
27
28 ### list
29
30 List installed packages.
31
32         picnit list
33
34 ### upgrade
35
36 Upgrade a package.
37
38         picnit upgrade hello_picnit
39
40 ### uninstall
41
42 Uninstall a package.
43
44         picnit uninstall hello_picnit
45
46 ### help
47
48 Show general help message or the help for a command.
49
50         picnit help
51         picnit help install
52
53 # SEE ALSO
54
55 The Nit language documentation and the source code of its tools and libraries may be downloaded from <http://nitlanguage.org>