Skip to content

Latest commit

 

History

History
72 lines (48 loc) · 2.47 KB

CONTRIBUTING.md

File metadata and controls

72 lines (48 loc) · 2.47 KB

Contributing

Requirements

How to

When someone wants to contribute to improvements in this repository, the following steps must be performed.

  • Clone the repository to your computer, with the following command:
git clone git@github.com:Sensedia/open-tools.git
  • Create a branch using the following command:
git checkout -b BRANCH_NAME
  • Make sure it is the correct branch, using the following command:
git branch
  • The branch with an '*' before the name will be used.
  • Make the necessary changes.
  • Test your changes.
  • Commit your changes to the newly created branch.
  • Submit the commits to the remote repository with the following command:
git push --set-upstream origin BRANCH_NAME
  • Create a Pull Request (PR) for the master branch of the repository. Watch this tutorial.
  • Update the content with the reviewers suggestions (if necessary).
  • After your PR has been approved and merged, update the changes in your local repository with the following commands:
git checkout master
git pull upstream master
  • Remove the local branch after approval and merge from your PR, using the following command:
git branch -d BRANCH_NAME

Reference: