Hacktoberfest welcomes people of all 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: https://hacktoberfest.com/about/
International Organization of Student Developers, Bhagwan Parshuram Institute of Technology (IOSD BPIT) is one of the most prestigious societies in the college. With the parent branch in DTU, Chapters of IOSD are spread accross 23 colleges round India. IOSD aims to bring about a change in the technical cultures of the college, contributing by bringing about a change by improving the coding culture and putting an effort to develop together as everyone grows. We at IOSD conduct various sessions, events, coding challenges, learning programs and open-source programs (Like this!). IOSD BPIT continues to enhance and expand it's outcomes by contributing more and more to the society while developing together and hit new milestones during the journey
- During the Hacktoberfest, use the repositories with the tags of
hacktoberfest
,hacktoberfest2022
,hacktoberfest-accepted
and tags like such - Please maintain the decorum of the Open Source Community. Be considerate towards the contribution of the other collaborators and contributors. In case of any issue, please mention the same with a valid description regarding the issue.
- Any violation to Open-Source Community. Any misbehave during the event (including Spamming, Inappropriate Contributions and various others) would lead you to disqualification from the event.
To deploy the project, follow the steps below
- To get started with your contributions, fork this HacktoberFest Repository. To do so, click the Fork button, just like the one shown below:
- To start working on your Forked Repository, Clone the Repository in your Local System. Run the following code in the Command Terminal, directed towards your prefered directory:
git clone https://github.com/<your-username>/IOSD-BPIT-Hacktoberfest-2022.git
git remote add upstream https://github.com/IOSD/IOSD-BPIT-Hacktoberfest-2022.git
cd IOSD-BPIT-Hacktoberfest-2022
git checkout -b <your-name>
-
Open the project in your Code Editor
-
Work upon the code and do the desired changes. Use the command
git status
to see the changes made. You can also access to the working tree of the files in the project. -
Use the
git add
command to Stage all your changes towards the final push:
git add .
- Finally, commit your changes using
git commit
command:
git commit -m "<your-name> message"
- You've made it! Just a few more steps to go :) Use the command below to push your changes to the source of the repository.
git push origin <your-branch-name>
- After you are done with the changes as well as have pushed your code, it's time to make the Pull Request
- When you visit the Source Repository, you will see
Compare and Pull Request
button. Click the button as well as add a suitable title to your Pull Request along with a brief description, describing your changes in the code!
git clone https://github.com/<your-username>/IOSD-BPIT-Hacktoberfest-2022.git