Skip to content

Latest commit

 

History

History
53 lines (40 loc) · 1.15 KB

CONTRIBUTING.md

File metadata and controls

53 lines (40 loc) · 1.15 KB

Guidelines for Contibution

Open for Contribution

  1. Fork the repository and then clone it. For cloning command is:
$ git clone "https://github.com/<username>/RoutePlanner-with-OpenStreetMap"
  1. Do changes and stage them.
$ git add <filename>
  1. Commit you changes with a commit message.
$ git commit -m "<message>"
  1. Push changes to your forked repository
$ git push -u origin branchname
  1. Create a pull request to the upstream repository.

For creating Pull Request

Create a pull request mentioning the functionalities of the changes you have made and explain it in the comment.

Synchronize forked repository with Main repository (Needed if creating a branch)

  1. Create upstream as our repository
$ git remote add main "https://github.com/kshitizsaini113/RoutePlanner-with-OpenStreetMap"
  1. Fetch changes from main repository
$ git fetch main
  1. Merge changes after being fetched
$ git merge main/master
  1. Push changes to your forked repository
$ git push -f origin master

Issue

In case you face any problem or want to suggest any changes, create issue clearly mentioning your problem.