##Contributing
Contributions are encouraged, while it must be noted, this project has a planned path and you should seek to contact the authors, before undergoing any large development. All contributions will be placed under the same apache license, contributers must agree to that license.
The following is expected from any pull requests.
-
Fork the project, clone your fork, and configure the remotes:
# clone your fork git clone https://github.com/<your-username>/site.git # change directory to the repository folder cd site # set the official CheckoutCrypto site repo to a remote branch called "upstream" git remote add upstream https://github.com/checkoutcrypto/site.git
-
If you cloned a while ago, make sure to update with the latest changes from upstream branch:
git checkout master git pull upstream master
-
Create a new branch for your changes/fixes
git checkout -b <topic-branch-name>
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream master
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description against the
master
branch.