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

Side by Side Diff: app/views/doc/pub-uploader.html

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/views/doc/pub-upgrade.html ('k') | app/views/doc/pubspec.html » ('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 <pre><code>$ pub uploader [options] {add/remove} &lt;email&gt;
2 </code></pre>
3
4 <p>This command allows <a href="glossary.html#uploader">uploaders</a> of a packa ge on
5 <a href="http://pub.dartlang.org">pub.dartlang.org</a> to add or remove other up loaders for
6 that package. It has two sub-commands, <code>add</code> and <code>remove</code>, that take the email
7 address of the person to add/remove as an uploader. For example:</p>
8
9 <pre><code>~/code/transmogrify$ pub uploader add nweiz@google.com
10 'nweiz@google.com' added as an uploader for package 'transmogrify'.
11
12 ~/code/transmogrify$ pub uploader remove nweiz@google.com
13 'nweiz@google.com' is no longer an uploader for package 'transmogrify'.
14 </code></pre>
15
16 <p>If a package has only one uploader, that uploader can&rsquo;t be removed. You may
17 remove yourself as an uploader (as long as there are other uploaders), but you
18 won&rsquo;t be able to re-add yourself again afterwards.</p>
19
20 <p>By default, the package in the current working directory will have its
21 uploaders modified. You can also pass the <code>--package</code> flag to choose a
22 package by name. For example:</p>
23
24 <pre><code>$ pub uploader --package=transmogrify add nweiz@google.com
25 'nweiz@google.com' added as an uploader for package 'transmogrify'.
26 </code></pre>
27
28 <p>Note that uploaders are identified by their Google accounts, so use a Gmail o r
29 Google Apps email address for any new uploaders.</p>
OLDNEW
« no previous file with comments | « app/views/doc/pub-upgrade.html ('k') | app/views/doc/pubspec.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698