choco-source: add page (#2048)
This commit is contained in:
parent
a6b0c40794
commit
8f238ae1df
|
|
@ -0,0 +1,31 @@
|
|||
# choco source
|
||||
|
||||
> Manage sources for packages with Chocolatey.
|
||||
|
||||
- List currently available sources:
|
||||
|
||||
`choco source list`
|
||||
|
||||
- Add a new package source:
|
||||
|
||||
`choco source add --name {{name}} --source {{url}}`
|
||||
|
||||
- Add a new package source with credentials:
|
||||
|
||||
`choco source add --name {{name}} --source {{url}} --user {{username}} --password {{password}}`
|
||||
|
||||
- Add a new package source with a client certificate:
|
||||
|
||||
`choco source add --name {{name}} --source {{url}} --cert {{path/to/certificate}}`
|
||||
|
||||
- Enable a package source:
|
||||
|
||||
`choco source enable --name {{name}}`
|
||||
|
||||
- Disable a package source:
|
||||
|
||||
`choco source disable --name {{name}}`
|
||||
|
||||
- Remove a package source:
|
||||
|
||||
`choco source remove --name {{name}}`
|
||||
Loading…
Reference in New Issue