Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.
You are welcome to make improvements to existing answers, answer unanswered questions and post new questions / answers. Whenever possible, add a list of references and supplementary material. Follow the existing format of markdown and code.
The issue tracker is the preferred channel for spelling mistakes, errors or any general feedback. If you want to work on an existing issue, please add a comment in it stating your interest so it can be assigned to you. That way duplicate PRs can be avoided.
Please adhere to the coding conventions used throughout the project (spelling, indentation, punctuation etc.).
Adhering to the following 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>/full-stack-interview.git # Navigate to the newly cloned directory cd full-stack-interview # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/monkey3310/full-stack-interview.git
-
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 the main project development branch) to contain your feature, change, or fix:
git checkout -b <topic-branch-name>
-
Locally merge (or rebase) the upstream development branch into your topic branch:
git pull [--rebase] upstream master
-
Squash your commits down to a single one (we want to keep the master branch nice and clean)
-
Push your topic branch up to your fork:
git push origin <topic-branch-name>
-
Open a Pull Request with a clear title and description.
Please note our Code of Conduct and follow it in all your interactions with the project.
IMPORTANT: By submitting patches, you agree to allow the project owners to license your work under the terms of the MIT License.