Skip to content

Latest commit

 

History

History
56 lines (49 loc) · 1.25 KB

CONTRIBUTING.md

File metadata and controls

56 lines (49 loc) · 1.25 KB

Contributing

If you have a suggestion that would make this project better, please create a pull request. Don't forget to give the project a star! Thanks again!

Getting Started

Internal Contributors

Installation and Contribution

  1. Clone the Repo
git clone git@github.com:IoTics-iiitn/IoTics.git

If you have forked the project then do this instead

git clone git@github.com:<your_username>/IoTics.git
  1. Install NPM packages
npm install
  1. Create your Feature Branch
git checkout -b <branch-name> # Create a new branch and check it out
  1. Add your changes once the work is done
git add .
  1. See your staged changes
git status
  1. Commit your Changes
git commit -m <write commit message inside quotes>
  1. Push to the Branch
git push -u origin <branch-name>
  1. Open a Pull Request

Important ❗

Before working on any existing branch always run this command to keep things updated.

git pull

External Contributors

  1. Fork the Project
  2. Follow these steps.