[llvm] r374474 - docs/DeveloperPolicy: Add instructions for requesting GitHub commit access

Tom Stellard via llvm-commits llvm-commits at lists.llvm.org
Thu Oct 10 16:36:06 PDT 2019


Author: tstellar
Date: Thu Oct 10 16:36:06 2019
New Revision: 374474

URL: http://llvm.org/viewvc/llvm-project?rev=374474&view=rev
Log:
docs/DeveloperPolicy: Add instructions for requesting GitHub commit access

Subscribers: mehdi_amini, jtony, xbolva00, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D66840

Modified:
    llvm/trunk/docs/DeveloperPolicy.rst

Modified: llvm/trunk/docs/DeveloperPolicy.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DeveloperPolicy.rst?rev=374474&r1=374473&r2=374474&view=diff
==============================================================================
--- llvm/trunk/docs/DeveloperPolicy.rst (original)
+++ llvm/trunk/docs/DeveloperPolicy.rst Thu Oct 10 16:36:06 2019
@@ -396,6 +396,26 @@ to do so.
 
 .. _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
 ---------------------
 




More information about the llvm-commits mailing list