Skip to content

Latest commit

 

History

History
65 lines (42 loc) · 1.78 KB

File metadata and controls

65 lines (42 loc) · 1.78 KB

Contributing to Alarms

Here are the guidelines we'd like you to follow:

Working with Alarms

  • Fork and Clone the repository and add this as remote upstream.
  • Create new branch for features.
  • Pull latest changes from upstream before pushing your code or creating a new feature branch.
  • Send a PR to this repo for review and merging

NOTE:

Never push directly to main repository (upstream). Only push to your forked repo (origin) and send a pull request to the main repository


Git Commit Guidelines

Commit Message Format

Each commit message consists of a header, a body and a footer. The header has a special format that includes a type, a scope and a subject:

<type>(<scope>): <subject>
<BLANK LINE>
<body>
<BLANK LINE>
<footer>

Any line of the commit message cannot be longer 100 characters! This allows the message to be easier to read on github as well as in various git tools.

Example Commit Message

feat(Profile): display QR code

fetch the qr code from API and display it on Profile page (ProfileFragment.kt)

fixes #1234

Please follow the conventions followed here.

Also, refer this page on how to write the body

Found an Issue?

If you find a bug in the source code or a mistake in the documentation, submit an issue to The GitHub Repository. Even better you can submit a Pull Request with a fix.

Want a Feature?

You can request a new feature by submitting an issue to our GitHub Repository