OLD | NEW |
(Empty) | |
| 1 '\" t |
| 2 .\" Title: git-cherry-pick-upload |
| 3 .\" Author: [FIXME: author] [see http://docbook.sf.net/el/author] |
| 4 .\" Generator: DocBook XSL Stylesheets v1.76.1 <http://docbook.sf.net/> |
| 5 .\" Date: 07/23/2014 |
| 6 .\" Manual: Chromium depot_tools Manual |
| 7 .\" Source: depot_tools dff725e |
| 8 .\" Language: English |
| 9 .\" |
| 10 .TH "GIT\-CHERRY-PICK-UPLOAD" "1" "07/23/2014" "depot_tools dff725e" "Chromium d
epot_tools Manual" |
| 11 .\" ----------------------------------------------------------------- |
| 12 .\" * Define some portability stuff |
| 13 .\" ----------------------------------------------------------------- |
| 14 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 15 .\" http://bugs.debian.org/507673 |
| 16 .\" http://lists.gnu.org/archive/html/groff/2009-02/msg00013.html |
| 17 .\" ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 18 .ie \n(.g .ds Aq \(aq |
| 19 .el .ds Aq ' |
| 20 .\" ----------------------------------------------------------------- |
| 21 .\" * set default formatting |
| 22 .\" ----------------------------------------------------------------- |
| 23 .\" disable hyphenation |
| 24 .nh |
| 25 .\" disable justification (adjust text to left margin only) |
| 26 .ad l |
| 27 .\" ----------------------------------------------------------------- |
| 28 .\" * MAIN CONTENT STARTS HERE * |
| 29 .\" ----------------------------------------------------------------- |
| 30 .SH "NAME" |
| 31 git-cherry-pick-upload \- Upload the diff between a revision and its parent to r
ietveld\&. |
| 32 .SH "SYNOPSIS" |
| 33 .sp |
| 34 .nf |
| 35 \fIgit cherry-pick-upload\fR \-\-branch <remote_branch_name> <commit_hash> |
| 36 .fi |
| 37 .sp |
| 38 .SH "DESCRIPTION" |
| 39 .sp |
| 40 git cherry-pick-upload is used to upload a cherry pick to rietveld\&. It uses yo
ur view of the remote to generate the diff between a revision and its parent, an
d then uploads that diff to rietveld\&. |
| 41 .sp |
| 42 The commit message is annotated with "(cherry picked from commit [parent sha1])"
as if it were generated by git cherry\-pick \-x\&. |
| 43 .SH "EXAMPLE" |
| 44 .sp |
| 45 |
| 46 .sp |
| 47 .if n \{\ |
| 48 .RS 4 |
| 49 .\} |
| 50 .nf |
| 51 \fB$ git cherry-pick-upload \-h\fR |
| 52 usage: git_cherry_pick_upload\&.py [\-h] \-\-branch <branch> <commit> |
| 53 |
| 54 positional arguments: |
| 55 <commit> SHA to cherry pick\&. |
| 56 |
| 57 optional arguments: |
| 58 \-h, \-\-help show this help message and exit |
| 59 \-\-branch <branch>, \-b <branch> |
| 60 The upstream branch to cherry pick to\&. |
| 61 |
| 62 \fB$ git cherry-pick-upload \-b my_branch c02b7d24a066adb747fdeb12deb21bfa\fR |
| 63 Found parent revision: b96d69fda53845a205151613a9c4cc93 |
| 64 Loaded authentication cookies from \&.codereview_upload_cookies |
| 65 Issue created\&. URL: https://codereview\&.chromium\&.org/1234567890 |
| 66 Uploading base_file for some/path/first\&.file: OK |
| 67 Uploading some/path/first\&.file: OK |
| 68 Uploading base_file for some/path/second\&.file: OK |
| 69 Uploading some/path/second\&.file: OK |
| 70 Uploading base_file for some/path/third\&.file: OK |
| 71 Uploading some/path/third\&.file: OK |
| 72 Finalizing upload: OK |
| 73 .fi |
| 74 .if n \{\ |
| 75 .RE |
| 76 .\} |
| 77 .sp |
| 78 .SH "SEE ALSO" |
| 79 .sp |
| 80 \fBgit-cherry-pick\fR(1) \fBgit-cl-upload\fR(1) |
| 81 .SH "CHROMIUM DEPOT_TOOLS" |
| 82 .sp |
| 83 Part of the chromium \fBdepot_tools\fR(7) suite\&. These tools are meant to assi
st with the development of chromium and related projects\&. Download the tools f
rom \m[blue]\fBhere\fR\m[]\&\s-2\u[1]\d\s+2\&. |
| 84 .SH "NOTES" |
| 85 .IP " 1." 4 |
| 86 here |
| 87 .RS 4 |
| 88 \%https://chromium.googlesource.com/chromium/tools/depot_tools.git |
| 89 .RE |
OLD | NEW |