Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved!
These Guides aim to be inclusive. We use "we" and "our" instead of "you" and "your" to foster this sense of inclusion.
Ideally there is something for everybody in each guide, from beginner to expert. This is hard, maybe impossible. When we need to compromise, we do so on behalf of beginning users because expert users have more tools at their disposal to help themselves.
The general pattern we use for presenting information is to first introduce a small, discreet topic, then write a small amount of code to demonstrate the concept, then verify that the code worked.
In this way, we build from small, easily digestible concepts into more complex ones. The shorter this cycle is, as long as the information is still clear and complete, the better.
- We use the "elixir" code fence for all module code.
- We use the "console" code fence for iex and shell commands.
- We use the "html" code fence for html templates, even if there is elixir code in the template.
- We use backtics for filenames and directory paths.
- We use backtics for module names, function names, and variable names.
Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.
IMPORTANT: By submitting a patch, you agree that your work will be licensed under the license used by the project.
If you have any large pull request in mind (e.g. adding a new guide, completely changing an existing one, etc), please ask first otherwise you risk spending a lot of time working on something that the project's developers might not want to merge into the project.
When working with git, we recommend the following process in order to craft an excellent pull request:
- 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>/phoenix_guides
# Navigate to the newly cloned directory
cd phoenix_guides
# Assign the original repo to a remote called "upstream"
git remote add upstream https://github.com/phoenixframework/phoenix_guides
- If you cloned a while ago, get the latest changes from upstream:
git checkout master
git pull upstream master
- Create a new topic branch (off of
master
) to contain your feature, change, or fix.
IMPORTANT: Making changes in master
is discouraged. You should always
keep your local master
in sync with upstream master
and make your
changes in topic branches.
git checkout -b <topic-branch-name>
-
Commit your changes in logical chunks. Keep your commit messages organized, with a short description in the first line and more detailed information on the following lines. Feel free to use Git's interactive rebase feature to tidy up your commits before making them public.
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.
-
If you haven't updated your pull request for a while, you should consider rebasing on master and resolving any conflicts.
IMPORTANT: Never ever merge upstream master
into your branches. You
should always git rebase
on master
to bring your changes up to date when
necessary.
git checkout master
git pull upstream master
git checkout <your-topic-branch>
git rebase master
Thank you for your contributions!