Skip to content
This repository has been archived by the owner on Jul 5, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
28 lines (20 loc) · 748 Bytes

CONTRIBUTING.md

File metadata and controls

executable file
·
28 lines (20 loc) · 748 Bytes

Contribution guide

the steps to contribute to this project are straight-forward:

  1. fork the repo.
  2. clone it to your local machine:
git clone git@github.com:@user/corona-src.git

don't forget to change @user to your actual username.

  1. create a dev branch (optional):
git checkout -b dev

NOTICE: if you skip this step, go directly to step 7 after making modifications and pushing to the origin master branch.

  1. write the changes you want to make.
  2. push the changes to origin repo (your remote repo that you forked earlier...):
git pull -u origin dev
  1. create a pull request in your repo from dev to master branch.
  2. create a pull request to the upstream repo (found at @celyes/corona-src).