Skip to content

Latest commit

 

History

History
84 lines (55 loc) · 2.5 KB

CONTRIBUTING.md

File metadata and controls

84 lines (55 loc) · 2.5 KB

🖐 Hey there!!

This repository right here is for all kinds of people, be them coders designers advocates or whatever, we welcome you all.

As you can see there are multiple files to contribute to, so, pick any file and start contributing as much as you can.

There are a few things, which you have to keep in mind or you can say these are some rules, which you have to follow.

Rules:

  • Contribute quality content as well as in quantity.
  • Don't spam contributions.
  • Please don't hurry, each and every request will be merged after careful consideration.

💥 How to contribute to this repository

I. Star this repository

Star this repository by clicking on the star button on the top right of this page. This will help us in promoting this repository.

II. Fork this repository

You can get your own fork/copy of OneStopInfo by clicking on the Fork button.

III. Clone the repository

  1. You need to clone (download) it to local machine using
# This makes a local copy of repository in your machine.
$ git clone https://github.com/<your-github-username>/OneStopInfo.git 
  1. Once you have cloned the OneStopInfo repository in GitHub, move to that folder first using change directory command.
# This will change directory to a folder OneStopInfo
$ cd OneStopInfo

Move to this folder for all other commands.

IV. Create a new branch

  1. Whenever you are going to make contribution. Please create separate branch using command and keep your main branch clean (i.e. synced with remote branch).
# It will create a new branch with name Branch_Name and switch to branch Folder_Name
$ git checkout -b Branch_Name

Create a separate branch for contribution and try to use same name of branch as of folder.

  1. To switch to desired branch
# To switch from one folder to other
$ git checkout Branch_Name
  1. To add changes to the branch use the following command
# To add all files to branch Folder_Name
$ git add .
  1. Type in a message relevant for the code reviewer using
# This message get associated with all files you have changed
$ git commit -m 'relevant message'
  1. Push your awesome work to your remote repository using
# To push your work to your remote repository
$ git push -u origin Branch_Name

Finally, go to your repository in browser and click on compare and pull requests. Then add a title and description to your pull request that explains your precious effort.