Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1.92 KB

CONTRIBUTING.md

File metadata and controls

36 lines (22 loc) · 1.92 KB

Contribution guidelines

First of all, thanks for thinking of contributing to this project. 😄

Before sending a Pull Request, please make sure that you're assigned the task on a GitHub issue.

  • If a relevant issue already exists, discuss on the issue and get it assigned to yourself on GitHub.
  • If no relevant issue exists, open a new issue and get it assigned to yourself on GitHub.

Please proceed with a Pull Request only after you're assigned. It'd be a waste of your time as well as ours if you have not contacted us before hand when working on some feature / issue. You can contact me on the Facebook group: https://www.facebook.com/groups/552015885141292/ or on relevant issues itself.

I welcome any contribution that could enhance app's functionality. Kindly follow the simple steps below to submit a Pull Request.

Development

  1. Fork this repo and clone the forked repo locally.

  2. Install with

    git clone https://github.com/kaustubhhiware/NotiFyre.git
    cd c0derunR
    git remote set-url upstream https://github.com/kaustubhhiware/NotiFyre.git
    git remote set-url origin https://github.com/[your_username]/NotiFyre.git
  3. Make a seperate branch with a descriptive name (that could explain the purpose of the PR) such as awesome_feature and switch to it by running git checkout -b your_branch(here, awesome_feature) in the terminal.

  4. Add/Modify the code and do git add files_involved to add your changes.

  5. Commit your changes using git commit -am "your_message". Please refer to commit message guidelines to write better commit messages. It will help in an easier review process.

  6. Do git pull upstream master to sync with this repo.

  7. Do git push origin your_branch(here, awesome_feature) to push code into your branch.

  8. Finally, create a PR by clicking on the New pull request button here.