-
Notifications
You must be signed in to change notification settings - Fork 527
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add missing docs for the paket-push docsfile
- Loading branch information
Chet Husk
committed
Apr 4, 2016
1 parent
8772053
commit 62ea21c
Showing
1 changed file
with
20 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# paket push | ||
|
||
Pushes the given `.nupkg` file. | ||
|
||
[lang=msh] | ||
paket push url <string> file <string> [apikey <string>] [endpoint <string>] | ||
|
||
### Options: | ||
|
||
`url <string>`: Url of the NuGet feed. | ||
|
||
`file <string>`: Path to the package. | ||
|
||
`apikey <string>`: Optionally specify your API key on the command line. Otherwise uses the value of the `nugetkey` environment variable, or the api key stored in the [`paket.config` file](paket-config.html) for this url. | ||
|
||
`endpoint <string>`: Optionally specify a custom api endpoint to push to. Defaults to `/api/v2/package`. | ||
|
||
If you add the `-v` flag, then Paket will run in verbose mode and show detailed information. | ||
|
||
With `--log-file [FileName]` you can trace the logged information into a file. |