diff options
author | Tom Stellard <tstellar@redhat.com> | 2019-10-10 23:36:06 +0000 |
---|---|---|
committer | Tom Stellard <tstellar@redhat.com> | 2019-10-10 23:36:06 +0000 |
commit | 97578b14fca677dc7dc6ec75092ac1bc02a03b7b (patch) | |
tree | 3a7d0a789bd535cae25df113e9aa766ea6887415 | |
parent | c9428a04fc186c14bb130822456105587ebf7dfa (diff) | |
download | bcm5719-llvm-97578b14fca677dc7dc6ec75092ac1bc02a03b7b.tar.gz bcm5719-llvm-97578b14fca677dc7dc6ec75092ac1bc02a03b7b.zip |
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
llvm-svn: 374474
-rw-r--r-- | llvm/docs/DeveloperPolicy.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/llvm/docs/DeveloperPolicy.rst b/llvm/docs/DeveloperPolicy.rst index 27abc66f6d0..91934c047ba 100644 --- a/llvm/docs/DeveloperPolicy.rst +++ b/llvm/docs/DeveloperPolicy.rst @@ -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 --------------------- |