Skip to content

Commit fa594c6

Browse files
committed
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 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@374474 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent be044e6 commit fa594c6

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/DeveloperPolicy.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -396,6 +396,26 @@ to do so.
396396

397397
.. _discuss the change/gather consensus:
398398

399+
Obtaining Commit Access to the GitHub Repository
400+
------------------------------------------------
401+
We are currently in the process of migrating the project's source code from SVN
402+
to a git repository on GitHub. We are maintaining a file in SVN to map
403+
SVN usernames to GitHub usernames, so we can automatically grant access to
404+
existing committers when we complete the migration to GitHub. In order to
405+
request commit access, check out the github-usernames.txt file in meta/trunk and
406+
add a line in the form of $SVN_USERNAME:$GITHUB_USERNAME and commit it. For
407+
example:
408+
409+
.. code:: console
410+
411+
mkdir tmp-llvm-svn
412+
cd tmp-llvm-svn
413+
svn co https://[email protected]/svn/llvm-project/meta/trunk
414+
echo "$SVN_USERNAME:$GITHUB_USERNAME" >> trunk/github-usernames.txt
415+
cd trunk
416+
svn commit -m "Request commit access for $SVN_USERNAME"
417+
418+
399419
Making a Major Change
400420
---------------------
401421

0 commit comments

Comments
 (0)