Skip to content

Latest commit

 

History

History
33 lines (30 loc) · 1.97 KB

Contribution.md

File metadata and controls

33 lines (30 loc) · 1.97 KB

Cyclofit

Contribution Guidelines

Thanks for your interest in contributing to Dare2Change! Contributing to open source projects like this one are a rewarding way to learn, and build experience. Not only that, contributing is a great way to get involved with social coding. We are excited to see what amazing contributions you will make, as well as how your contributions will benefit others.

If you are new to contributing to open source projects, the process can be quite confusing. Not to worry! To help ensure both you and the community get the most out of your contributions, we've put together the following guidelines.

How to Contribute

If you'd like to contribute, a good place to start is by searching through the issues and pull requests to see if someone else had a similar idea or question.

Steps to Contribute

1.Comment on the issue you want to work on (You will be assigned only one issue at a time)
2.Once assigned, Fork the project.
3.Clone your fork.

git clone https://github.com/<YOUR-USERNAME>/cyclofit

4.Before start working, create a new branch from the current branch

git checkout -b <YOUR-NEW-BRANCH>
  1. Work on the new branch.
  2. Before pushing the code, make sure:
  • There should be proper code indentation after making changes in a file. You can use Ctrl+Shift+L in android studio to indent the code after making changes in a file.
  • The commit message should be short, meaningful, and precise. Try not to add more than 6-7 words.
  • Use git status to check that no extra file has been modified.

7.To actually make the commit and push it to your GitHub fork, run:

 git add .	
 git commit -m "YOUR COMMIT MESSAGE HERE"
 git push origin {YOUR BRANCH NAME}

8.From your forked repository, open a new pull request. In the description of the PR mention the issue that is being solved and add relevant screenshots.

9.Wait for the PR to merged and look out for another issues in the meantime