summaryrefslogtreecommitdiffstats
path: root/SUBMITTING_PATCHES
diff options
context:
space:
mode:
Diffstat (limited to 'SUBMITTING_PATCHES')
-rw-r--r--SUBMITTING_PATCHES17
1 files changed, 8 insertions, 9 deletions
diff --git a/SUBMITTING_PATCHES b/SUBMITTING_PATCHES
index f68906cc..63b0e571 100644
--- a/SUBMITTING_PATCHES
+++ b/SUBMITTING_PATCHES
@@ -5,7 +5,7 @@ Short Version:
5 - Make sure all code is under the Apache License, 2.0. 5 - Make sure all code is under the Apache License, 2.0.
6 - Publish your changes for review: 6 - Publish your changes for review:
7 7
8 git push ssh://review.source.android.com:29418/tools/repo.git HEAD:refs/for/master 8 git push https://gerrit-review.googlesource.com/git-repo HEAD:refs/for/maint
9 9
10 10
11Long Version: 11Long Version:
@@ -55,24 +55,23 @@ Do not email your patches to anyone.
55 55
56Instead, login to the Gerrit Code Review tool at: 56Instead, login to the Gerrit Code Review tool at:
57 57
58 https://review.source.android.com/ 58 https://gerrit-review.googlesource.com/
59 59
60Ensure you have completed one of the necessary contributor 60Ensure you have completed one of the necessary contributor
61agreements, providing documentation to the project maintainers that 61agreements, providing documentation to the project maintainers that
62they have right to redistribute your work under the Apache License: 62they have right to redistribute your work under the Apache License:
63 63
64 https://review.source.android.com/#settings,agreements 64 https://gerrit-review.googlesource.com/#/settings/agreements
65 65
66Ensure you have registered one or more SSH public keys, so you can 66Ensure you have obtained an HTTP password to authenticate:
67push your commits directly over SSH:
68 67
69 https://review.source.android.com/#settings,ssh-keys 68 https://gerrit-review.googlesource.com/new-password
70 69
71Push your patches over SSH to the review server, possibly through 70Push your patches over HTTPS to the review server, possibly through
72a remembered remote to make this easier in the future: 71a remembered remote to make this easier in the future:
73 72
74 git config remote.review.url ssh://review.source.android.com:29418/tools/repo.git 73 git config remote.review.url https://gerrit-review.googlesource.com/git-repo
75 git config remote.review.push HEAD:refs/for/master 74 git config remote.review.push HEAD:refs/for/maint
76 75
77 git push review 76 git push review
78 77