To work on this project, you will first need to make a copy of this repository. To do this, you should fork the repository and then clone it so that you have a local working copy.
Get your own Fork/Copy of this repository by clicking Fork button at right upper corner of your screen.
After forking the repository, you can now clone it to have a local working copy of the codebase.
To make your local copy of the repository follow the steps:
- Now clone the forked repository to your machine. Go to your GitHub account, open the forked repository, click on the code button and then click the copy to clipboard icon.
Open a terminal in a blank folder where you would like to store the project and run the following git command:
git clone <url>
where is the url (without the <>) to this repository aka your fork of this project. See the previous steps to obtain the url.
Now you can see all the files in your local system and begin making changes.
- Track your changes:
git add .
- Commit your changes
git commit -m "Relevant message"
- Push the committed changes in your feature/main branch to your remote repo.
git push origin <your_branch_name/main>
Now visit mood-colors
repository which you forked.
- Click on where it says
X commit ahead
- To create a pull request, click on
Create pull request
. Please ensure you compare your feature branch to the desired branch of the repo you are suppose to make a PR to. - Add appropriate title and description to your pull request explaining your changes and efforts done. Best practice is to include an image of the changes that were made if changes were visual.
- Click on
Create Pull Request
.
🎉 Kudos! You have made a PR! Sit back patiently and relax while your PR is reviewed and merged. Thank you for your contribution!
- On GitHub, navigate to the main page of the forked repository that you want to sync with the upstream repository.
- On your terminal, pull the forked repo that is now synced.
git pull origin main