The issue tracker is the preferred channel for changes: spelling mistakes, wording changes, new content and generally submitting pull requests, but please respect the following restrictions:
Pull requests are a great way to add new content to ECU Tuning The Right Way, as well as updating any browser issues or other style changes. Pretty much any sort of change is accepted if seen as constructive.
Adhering to the following this process is the best way to get your work included in the project:
-
Fork the project, clone your fork, and configure the remotes:
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/php-the-right-way.git # Navigate to the newly cloned directory cd php-the-right-way # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/codeguy/php-the-right-way.git
-
If you cloned a while ago, get the latest changes from upstream:
git checkout gh-pages git pull upstream gh-pages
-
Create a new topic branch (off the main project development branch) to contain your change or fix:
git checkout -b <topic-branch-name>
-
Install the Jekyll gem to preview locally.
-
Commit your changes in logical chunks.
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream gh-pages
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.
By submitting a pull request to this repository, you agree to allow the project owners to license your work under the the terms of the GNU General Public License v2.0.
The same content and license will be used for all ECU Tuning The Right Way publications, including - but not limited to:
- ecutuningtherightway.com
- Translations of ecutuningtherightway.com
- LeanPub: PHP The Right Way
- Translations of "LeanPub: |ECU Tuning The Right Way"
All content is completely free now, and always will be.
- Use UK English spelling (primary English repo only)
- Use GitHub Flavored Markdown for all content