Project:GURU/Information for Contributors

From Gentoo Wiki
Jump to:navigation Jump to:search

Prior setup

  • In order to commit to GURU, you need to have a SSH key (used to access the server) and OpenPGP key (used to sign commits and push certificates). If you don't have OpenPGP key yet, following GLEP 63 rules as much as possible is recommended. Generating GLEP-63-based OpenPGP keys is a decent guide to creating the key.
  • Please also make sure to read Certificate of Origin, as you will be required to confirm the acceptance of its terms in every commit. Its purpose is to confirm that your commits do not violate copyright.
  • Once you're ready, please file an access request, including:
    • your real name
    • preferred e-mail address (you will receive bug mail and other comms on this address)
    • SSH key
    • (For bonus points, you can also include the fingerprint of your OpenPGP key but this is currently not necessary.)
  • Please read the project regulations. Agreeing to the regulations is a condition of access. If you agree to these, please state so in the bug you file.

Repository/git setup

To clone the repository:

user $git clone -b dev git@git.gentoo.org:repo/proj/guru.git

This automatically selects the dev branch. Please commit to this branch, and do not ever commit to master directly.

Using the following settings is recommended:

user $git config --local pull.ff only
user $git config --local pull.rebase merges
user $git config --local commit.gpgsign 1
user $git config --local push.gpgsign 1

This, in order:

  1. Blocks git pull from creating merge commits when you have local commits.
  2. Enables automatic rebasing on git pull (eq: git pull --rebase).
  3. Enables OpenPGP-signing commits (eq: git commit -S).
  4. Enables OpenPGP-signing push certificates (eq: git push --signed).

Furthermore, you may need to include one of the following if you haven't set them globally already, and the defaults do not work for you:

user $git config --local user.name "Your Full Name"
user $git config --local user.email "someone@example.com"
user $git config --local user.signingkey KEY-FINGERPRINT

This, in order:

  1. Sets the author and committer name (please use your real name).
  2. Sets the author and committer e-mail address.
  3. Sets the identifier of OpenPGP key to use for signatures.

Committing

If you haven't used git before, looking through a good guide first is recommended. We recommend the Pro Git Book. GLEP 66 provides recommended Gentoo-specific policies. Long story short, we recommend doing one commit for each change, and starting commit messages with category/package-name: ...

Before committing, please make sure you've staged (via git add) all your changes correctly. Use the following command to confirm this:

user $git status
Important
You should use dev-util/pkgcheck to check for QA issues.

It is recommended to use dev-util/pkgdev for committing. To commit use:

user $pkgdev commit --signoff

Alternatively (or whenever direct use of pkgdev is insufficient), please use:

user $pkgcheck scan --net
user $git commit -sS

After committing, it is recommended to look through your changes via:

user $git log -p

Then push them via:

user $git pull --rebase && pkgdev push -A

If errors occur, please investigate whether they are related to your changes. If not, please consider helping to fix the issues, but you can push if you're new and unsure how to resolve them.

Following bugs

Bugs regarding packages in GURU are assigned/CC-ed to the opt-in guru-bugs alias. If you wish to follow bug mail, please visit Email preferences on Gentoo Bugzilla, and add guru-bugs@gentoo.org to your watch list.

Becoming a Trusted Contributor

If you have done some good work for GURU already, and feel like taking more responsibilities, you can become a Trusted Contributor and gain the privilege of reviewing commits and merging them to master. In order to do so, please file a bug requesting ascension. The developers will verify your contributions and grant you Trusted Contributor status.

See Project:GURU/Information_for_Trusted_Contributors.

Inactivity

Contributors who do not contribute to the repository for a period of more then 2 years may have their access revoked. An e-mail, as well as a comment on the original access request, will be sent to inactive contributors before their access is revoked. Contributors whose access has been revoked may regain access at some later date by requesting this on their original access request.