Werken met Gerrit

Account setup

  1. Sign in with your Google, GitHub, or git.jami.net account.

  2. U moet ook [een SSH-sleutel uploaden]https://review.jami.net/settings/#SSHKeys) om wijzigingen voor review te kunnen maken.

  3. Vergeet niet een gebruikersnaam te selecteren.

  4. Finally, the email address specified in your git config must match one of the email addresses registered with your Gerrit account.

Belangrijk

For Savoir-faire Linux Inc. employees: please continue to use your @savoirfairelinux.com email address.

To view your Git config

git config --list

To test your SSH access

To check that your SSH access is properly set up, run the following command:

ssh -p 29420 <gebruikersnaam>@review.jami.net

is your Gerrit username that you should have set during the account creation. If not, you can do that here.

If your access is granted, you should see a message like:

****    Welcome to Gerrit Code Review    ****

Hi, you have successfully connected over SSH.

  Unfortunately, interactive shells are disabled.
  To clone a hosted Git repository, use:

  git clone ssh://<username>@review.jami.net:29420/REPOSITORY_NAME.git

Connection to review.jami.net closed.

Git configuration

Gerrit is the official Git repository.

Om de configuratie te updaten

You must update your remote information to now use the Gerrit repository. To do that, update your origin URL:

git remote set-url origin ssh://<username>@review.jami.net:29420/<project_name>

Replace <project_name> with the correct project (example: jami-daemon).

Of kloneer de bestaande opslagplaats als je van start wilt.

Om door verstek te drukken in refs/for/master

You can configure Git to automatically create a review when a change is pushed.

git config remote.origin.push HEAD:refs/for/master

Om de herziening te maken

Als je naar deze magische tak gaat, wordt er automatisch een review gemaakt over Gerrit.

git duwen oorsprong HEAD:refs/for/master

Als u de standaard op refs/for/master hebt ingesteld zoals hierboven beschreven,

git push

Als HEAD momenteel naar de tak wijst met de commits die u wilt doorzetten.

git push origine <bugfix_branchname>:refs/for/master

If this is the first time you’ve pushed, you will be prompted to install a post-commit hook to insert a Change-ID in your commit message. Gerrit needs this to track patch sets and will reject pushes until you install it. Simply copy and paste the command to install the hook as instructed by Gerrit and amend your commits.

To push a private patch

You can push a work in progress (a.k.a. draft) by pushing to refs/for/master%private.

U kunt bijvoorbeeld een “private” afstandsbediening opzetten om naar te duwen; open <project_dir>/.git/config en toevoegen:

[remote "private"]

    url = ssh://<username>@review.jami.net:29420/jami-daemon
    push = HEAD:refs/for/master%private

Dan:

git push private

Private werken op dezelfde manier als patch sets, behalve dat ze standaard niet zichtbaar zijn voor anderen en geen Jenkins builds uitlokken.