Hacktoberfest 2022 Practice Contribution and Beginner Practice Repository (Excluded from haccktoberfest)
Hacktoberfest is a month long event where people are awarded for contributing to open source projects 🙌, and we're joining the party hosted by DigitalOcean for the 8th year in a row. Hacktoberfest encourages participation in giving back to the open source community by completing pull requests, participating in events, and donating to open source projects.
Open source Community is one of the cool community, you can work with amazing folks contribute to large scale projects. link embaded
We have other repositories in the organisation you can contribute to. If you would like to join our GitHub organisation, raise an issue on this repository.
Repository for you to raise a Pull Request for practice.
Just add your name, Linkedin url, or other social media link on HTML file
I am looking For a mentor (7584926589) Please contact with me
- Make any changes in your forked repository
- On this repository, click
Pull Requests
and raise aPull Request
selecting your fork on the right drop down
Questions can be asked by raising an Issue
.
click on the clone button (green in colour). This gives you a copy of the project. Its now yours to play around with
- Using git on your local machine. Do this to download the forked copy of this repository to your computer
git clone https://github.com/yourGithubUsername/Hacktoberfest_Practice_Contribution
- switch to the cloned folder. This can be done with Gitbash or the integrated terminal in the VSCode editor
cd Hacktoberfest_Practice_Contribution
- Make a new branch. Your name would make a good branch because it's unique!
git checkout -b <name of new branch>
-
Open the file
index.html
-
Open images file and add your photo
-
For example ,
- <div class="contentBx"> <h4>Sahitya Roy</h4> <h5>Founder Of Eduhub community</h5> </div> <div class="sci"> <a href="https://linkedin.com/in/sahitya-roy-244b941a2/"><i class="fa fa-linkedin" aria-hidden="true"></i></a> <a href="https://twitter.com/SahityaRoy07"><i class="fa fa-twitter" aria-hidden="true"></i></a> <a href="https://www.youtube.com/channel/UCqXTIC8hmyigUtYGVykQsug"><i class="fa fa-youtube" aria-hidden="true"></i></a> </div> </div> </div>
-
Stage your changes
git add index.html
or
git add .
- Commit the changes
git commit -m "Add <your-github-username>"
- Check the status of your repository
git status
- Pushing your repository to github
git push origin <name of your branch>
or
git branch -M main
git push -u origin main
git push origin main --force
-
Navigate to your fork, on the top of the files section you'll notice a new section containing, a contribute button!
-
Click on the contribute button, it will open a drop down, click the pull request button on the drop down Note: A pull request allows your changes to be merged with the original project.
-
Wait for your changes to be merged
Hurray! You successfully made a contribution!