Skip to content

Latest commit

 

History

History
62 lines (50 loc) · 2.2 KB

CONTRIBUTING.md

File metadata and controls

62 lines (50 loc) · 2.2 KB

Contribution Guidelines

Welcome to the world of open-source! It is really awesome to have you here. Before start contributing with this project make sure you read our Code Of Conduct, it is really important to make this inclusive and open to everyone

Looking to make your first PR?

This is a beginner friendly repository made specifically for BlueLearn Sprint that helps you get your first PR. If you are a beginner, and looking for your first contribution, we are here to help. Just add your details to contributors.json.

Submitting a pull request

Step#1: Star this repo 🌟

Star this repo... pull requests from account with a star will only be merged.

Step#2: Fork and clone the repository

Do not directly clone the repository as it is not considered as a good practice.

Step#3: Create a new branch:

git checkout -b new-user

Step#4: Create a new file

in contributors folder and name the file as YOUR-GITHUB-USERNAME.json. Do not forget to include the .json as file extension.

Step#5: Add your details

to YOUR-GITHUB-USERNAME.json file in the below format:

{
    "github-username": "YOUR-GITHUB-USERNAME",
    "favourite-emoji": "YOUR-FAVOURITE-EMOJI",
    "favourite-music": "YOUR-FAVOURITE-MUSIC-URL",
    "favourite-color": "YOUR-FAVOURITE-COLOR"
}

Note:

"github-username" 
same as the one you're making the pull request from. 
"favourite-emoji" 
any emoji you love. pick one from https://emojipedia.org/
"favourite-music" 
any playlist/song from https://spotify.com/
"favourite-color" 
any color in hex format (example: #fff44f). 
You can pick a colour from https://www.google.com/search?q=color+picker

Step#6: Add your files

git add -A

Step#7: Commit your changes

git commit -m "added myself"

Step#8: Push to your fork

git push origin new-user and submit a pull request.

Step#9: Pat your self on the back

and wait for your pull request to be reviewed and merged.