summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShawn O. Pearce <sop@google.com>2012-02-28 18:53:12 -0800
committerShawn O. Pearce <sop@google.com>2012-02-28 18:54:33 -0800
commit9b017dab46bd5b61f8719a3f2d7ca301ea0f6f69 (patch)
tree81e7b9241068e917b006d9651397507a818cea56
parente9dc3b33680571731181f30fbd38317d19c24652 (diff)
downloadgit-repo-9b017dab46bd5b61f8719a3f2d7ca301ea0f6f69.tar.gz
Update SUBMITTING_PATCHES
The review server is now at gerrit-review.googlesource.com. Change-Id: I4be67fdb1876eb2e2af4420ac63557596b9e233b
-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