Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(373)

Side by Side Diff: app/doc/pub-uploader.markdown

Issue 162403002: Remove docs and point to ones on dartlang.org. (Closed) Base URL: https://github.com/dart-lang/pub-dartlang.git@master
Patch Set: Fit in 80 columns. Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « app/doc/pub-upgrade.markdown ('k') | app/doc/pubspec.markdown » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 ---
2 title: "Command: Uploader"
3 ---
4
5 $ pub uploader [options] {add/remove} <email>
6
7 This command allows [uploaders](glossary.html#uploader) of a package on
8 [pub.dartlang.org](http://pub.dartlang.org) to add or remove other uploaders for
9 that package. It has two sub-commands, `add` and `remove`, that take the email
10 address of the person to add/remove as an uploader. For example:
11
12 ~/code/transmogrify$ pub uploader add nweiz@google.com
13 'nweiz@google.com' added as an uploader for package 'transmogrify'.
14
15 ~/code/transmogrify$ pub uploader remove nweiz@google.com
16 'nweiz@google.com' is no longer an uploader for package 'transmogrify'.
17
18 If a package has only one uploader, that uploader can't be removed. You may
19 remove yourself as an uploader (as long as there are other uploaders), but you
20 won't be able to re-add yourself again afterwards.
21
22 By default, the package in the current working directory will have its
23 uploaders modified. You can also pass the `--package` flag to choose a
24 package by name. For example:
25
26 $ pub uploader --package=transmogrify add nweiz@google.com
27 'nweiz@google.com' added as an uploader for package 'transmogrify'.
28
29 Note that uploaders are identified by their Google accounts, so use a Gmail or
30 Google Apps email address for any new uploaders.
OLDNEW
« no previous file with comments | « app/doc/pub-upgrade.markdown ('k') | app/doc/pubspec.markdown » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698