Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

 

Code Block
bin/push_to_asf.py

 


push_to_asf.py checks the latest commits in gerrit and checks if they are in the Apache git repo. If some are not in the Apache git repo yet, it will ask you if you want to update the Apache git repo with the missing commits found in the Gerrit repo. It does not check what your local state is at all. It only compares remote Gerrit with the remote Apache repo. Keep in mind that if you are a committer, it will allow you to commit any change authored by anyone that has passed GVO.

Creating a branch (Impala committers only!) 
 

According to project bylaws, branch creation is by lazy consensus of the PMC. We recommend that you email the dev mailing list to let people know about your branch so they understand its purpose.


The steps to create a branch are:

  1. Create the branch in gerrit: https://gerrit.cloudera.org/#/admin/projects/Impala-ASF,branches
  2. Fetch the branch from gerrit and push it to the ASF Impala repository
Code Block
git fetch asf-gerrit
git checkout -b the-new-branch asf-gerrit/the-new-branch
git push apache HEAD:the-new-branch

Git and Gerrit etiquette

Contribution guidelines

...