Skip to content
This repository has been archived by the owner on Mar 3, 2021. It is now read-only.

Latest commit

 

History

History
59 lines (44 loc) · 1.61 KB

CONTRIBUTING.md

File metadata and controls

59 lines (44 loc) · 1.61 KB

Contributing to headset-control-plus

Contributions and suggestions are very welcome and wanted. I try to respond to pull requests within 48 hours. To contribute simply

  1. Fork the repository.

    How do I do this?

  2. Clone your forked repository and setup development environment

    git clone https://github.com/YOUR-USERNAME/headset-control-plus
    

    Resources:

  3. Make the fix or add feature to the code.

  4. Run tests to make sure there are no lint or build errors

    gradlew checkstyle
    

    and

    gradlew lint
    

    and

    gradlew test
    
  5. Sync your fork to make sure you have the latest changes.

    # Fetch upstream master and merge with your repo's master branch
    git fetch upstream
    git checkout master
    git merge upstream/master
    
    # If there were any new commits, rebase your development branch
    git checkout newfeature
    git rebase master
    

    Resources:

  6. Create a pull request.

    Resources:

  7. Wait for the maintainer to respond.

Thank you for your awesome contribution 😃