Hacktoberfest is digitalocean’s annual event that encourages people to contribute to open source throughout october.Hacktoberfest is all about giving back to those projects, sharpening skills, and celebrating all things open source, especially the people that make open source so special.
Hacktoberfest welcomes people of any experience level to participate, and low-code and non-code contributions are fantastic choices for folks who don’t have a lot of technical knowledge. Here are some examples of ways you can contribute to open-source projects:
Google Developers Students Club, Bhagwan Parshuram Institute of Technology is a community where students grow their knowledge in a peer-to-peer learning environment and build solutions for local businesses and their community.
- If you want your contributions to count, please contribute only to those projects with Hacktoberfest/Hacktoberfest2022 label.
- Please repect other developers and their code. Be considerate towards others' code and if you want to raise any issue kindly mention it properly.
- Any violation to open source community(including scamming) would you lead to disqualification from the event.
To deploy this project run
- To start contributing, you need to fork this hacktober repository. For this, click the fork button as shown below.
- Now to start working on it, you need to clone the repository in your local machine. Open your command terminal and paste the following.
git clone https://github.com/<your-username>/GDSC-BPIT-Hacktoberfest-2022.git
git remote add upstream https://github.com/GDSC-BPIT/GDSC-BPIT-Hacktoberfest-2022.git
cd GDSC-BPIT-Hacktoberfest-2022
git checkout -b <your-name>
- Open the project in your code editor
- Modify the code while working on the issue. If you execute the command
git status
, you'll see there are changes. - Add those changes to the branch you just created using the
git add
command:
git add .
- Finally, commit your changes using
git commit
command:
git commit -m "<your-name> message"
- Now it's time to push your changes using the command below :
git push origin <your-branch-name>
- When you visit the forked repository you will see
compare and pull request button
. Click it and leave a description about changes for the better understanding.