Welcome to the website for Ineed.io
! Below are all the things that you will need to know in order to contribute to this project!
- Fork the repo
- Clone the forked repo:
$ git clone <SSH/HTTPS Link of forked repo>
- Navigate to the cloned repo:
$ cd <name of folder>
- Install yarn:
$ npm i -g yarn
- Start the server:
$ yarn dev
Please follow very carefully to correctly contribute to this project! Follow these steps in order whenever you are working:
The first step is to pull all changes made to this repo, that way we don't have conflicting code whenever we develop. Follow these exact steps!
- The following is a ONE TIME command only:
- If working with SSH:
$ git remote add upstream git@github.com:Ineed-io/web.git
- If working with HTTPS:
$ git remote add upstream https://github.com/Ineed-io/web.git
- Fetch all local changes (Do this every time before you start coding):
$ git fetch upstream
- Overwrite your changes with the current changes (Also do this before you start coding):
$ git rebase upstream/main
This section will cover how to actually submit changes that you made (i.e new features, bug fixes, etc). Follow along closely!
- Before you start coding:
- You need to work on your code in a separate branch, each branch represents a feature that you made! The "main" branch represents the very current branch with the latest code, never push or make changes to this branch!
- Run the following before you start coding:
$ git checkout -b <feature you are going to add>
- I.e,
$ git checkout -b addingLoginForm
-
Run
$ yarn install
to install all the latest packages -
Now, go ahead and code whatever you want, usually you will need to look at Trello to see what needs to be done, and what has already been done!
-
Once finished, run the following commands in order:
- Add changes:
$ git add .
- Commit changes with a message:
$ git commit -m "feat/chore/fix: some change"
- Push changes with the branch name specified:
$ git push origin <branch name>
. I.e,$ git push origin addingLoginForm
- Create a pull request:
- Navigate to GitHub, and create a pull request
- Describe all the changes you made, be in depth
- Submit the pull request
If you ever decide to make a new feature, make sure to do it to a new branch! Never have a feature that you worked on later in the same branch, just make a new branch and work there!
- To navigate to a new branch, just do
$ git checkout -b newBranchName
, and start working! - Just remember when you push changes, push it to this branch, i.e
$ git push origin newBranchName
Make sure the main branch always has the current changes. To easily do this, just run the following (do this after ANY pull requests have been pushed to the main branch!
$ git checkout main
to switch to the main branch$ git fetch upstream
$ git rebase upstream/main
, and you're done!
- Run
git branch
too see what current branch you're in (starred branch is the one you are currently in!)
That is it for contributing! Again, you need to pull changes, create a new branch with the branch name being what feature you are going to work on, code whatever you need to, push changes to GitHub, then create a pull request!