Versions Compared

Key

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

...

Rules of Thumb

  • Every contribution is a piece of intellectual property.Please treat it with respect.
  • Preserve both the name and email address.This is the precious sustenance that nourishes our project.
  • Ensure your name and email address are there as the committer prior to pushing it to the Apache repositories.
  • Always give credit where it is due, ensure every merged commit reflects properly the individual who authored that commit.

...

Setting up Your Repository

Clone the canonical ASF repo using this command. The --origin option tells git to name the remote apache instead of the default, 
origin; this will reduce ambiguity when we later add a second remote upstream.{{

git clone --origin apache https://git-wip-us.apache.org/repos/asf/incubator-corinthia.git

...

Add a second remote, for the GitHub repository.{{

git remote add github https://github.com/apache/incubator-corinthia.git

...

For the GitHub remote, add an additional fetch reference which will cause every pull request to be made available as a remote 
branch in your workspace.

...