[PATCH] D66840: docs/DeveloperPolicy: Add instructions for requesting GitHub commit access
Tom Stellard via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Mon Sep 30 15:47:40 PDT 2019
tstellar updated this revision to Diff 222508.
tstellar added a comment.
Fix svn commit instructions.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D66840/new/
https://reviews.llvm.org/D66840
Files:
llvm/docs/DeveloperPolicy.rst
Index: llvm/docs/DeveloperPolicy.rst
===================================================================
--- llvm/docs/DeveloperPolicy.rst
+++ llvm/docs/DeveloperPolicy.rst
@@ -396,6 +396,26 @@
.. _discuss the change/gather consensus:
+Obtaining Commit Access to the GitHub Repository
+------------------------------------------------
+We are currently in the process of migrating the project's source code from SVN
+to a git repository on GitHub. We are maintaining a file in SVN to map
+SVN usernames to GitHub usernames, so we can automatically grant access to
+existing committers when we complete the migration to GitHub. In order to
+request commit access, check out the github-usernames.txt file in meta/trunk and
+add a line in the form of $SVN_USERNAME:$GITHUB_USERNAME and commit it. For
+example:
+
+.. code:: console
+
+ mkdir tmp-llvm-svn
+ cd tmp-llvm-svn
+ svn co https://$SVN_USERNAME@llvm.org/svn/llvm-project/meta/trunk
+ echo "$SVN_USERNAME:$GITHUB_USERNAME" >> trunk/github-usernames.txt
+ cd trunk
+ svn commit -m "Request commit access for $SVN_USERNAME"
+
+
Making a Major Change
---------------------
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D66840.222508.patch
Type: text/x-patch
Size: 1143 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190930/9d9752dd/attachment.bin>
More information about the llvm-commits
mailing list