Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.02 KB

Contributing.md

File metadata and controls

29 lines (20 loc) · 1.02 KB

How do I contribute to this?

Instructions:

Using Github:

  1. Fork this Repository using the button at the top of the page.
  2. Create a new branch for your modifications.
  3. Add your code by clicking "Add File".
  4. After adding your inputs, add a commit message and commit.
  5. Push it to the branch you created.
  6. Create a Pull Request.
  7. VOILA! Now wait for your commit to be merged!

Using Git:

  1. Fork this Repository using the button at the top of the page.
  2. Clone the forked repository to your system `git clone "url from clone option.
  3. Create a new branch for your modifications git branch new-branch .
  4. Check it out, git checkout new-branch and git checkout -b new-branch.
  5. Add your files (git add -A), commit (git commit -m "commit message") and push (git push origin new-branch).
  6. Create a Pull Request.
  7. VOILA! Now wait for it to be merged!

Happy Contributing !