Skip to content

Latest commit

 

History

History
68 lines (44 loc) · 1.93 KB

Contributing.md

File metadata and controls

68 lines (44 loc) · 1.93 KB

🌱 Contributing to hacktoberfest 2022

banner

Welcome to hacktoberfest 2022 Public Repository. 👨🏻‍💻

A month-long celebration from October 1st - 31st sponsored by Digital Ocean and GitHub to get people involved in Open Source. Create your very first pull request to any public repository on GitHub and contribute to the open source developer community.

https://hacktoberfest.com//


What can You contribute ⚠️

  • Contribute any JS projects you made.
  • Contribute any DSA problems of your choice
  • Make sure your follow the below steps.

Process is as follows :-

  • Login using github @ Hacktoberfest
  • Create four valid pull requests (PRs) between 1st - 31st October

How to Contribute to this repository

  • Fork the repository (Click the Fork button in the top right of this page, click your Profile Image)
  • Clone the forked repository to your local machine.
git clone https://github.com/anwesh08/Java.git
  • change the present working directory
cd https://github.com/anwesh08/Java.git
  • Add/Create your project to the specific folder as described in what you can contribute section.
  • Make a new branch
git checkout -b branch-name
  • Make change in the repository with the new branch.
  • push the changes.
git add .
git commit -m "Your commit Message"
git push origin branch-name
  • Make a pull request.
  • Star the repository.

NOTE

  • Make Sure you commit your changes in a new branch.
  • Make Sure you Give proper name to your files describing the addition.
  • Also Make Sure to put comments in your code wherever necessary.