This repository is created to help the students to learn and practice pull requests, contributions, and collaboration on GitHub.
- Learn GitHub Basics: Understand how to fork, clone, and push changes.
- Practice Pull Requests: Create pull requests and see how they work.
- Collaborate: Work with others to understand the collaboration workflow.
- Get Your Contributions Merged: All valid pull requests will be merged into this repository.
Follow these simple steps to contribute:
- Click on the Fork button in the top-right corner of this repository page to create your own copy.
- Clone the forked repository to your local machine:
git clone https://github.com/YajneshKumar2004/GitHub-Practice cd GitHub-Practice
- Create a branch for your changes:
git branch <your-branch-name>
- Then switch to the new branch you created
git checkout <your-branch-name>
- Stage and commit your changes:
git add . git commit -m "Added my contribution"
- Push the changes to your forked repositogitry:
git push origin <your-branch-name>
- Go to your forked repository on GitHub and click on the Pull Request button.
- Submit the pull request to this repository.
- This repository is here to:
- Provide a safe and supportive space for learning.
- Encourage open-source contributions.
- Build confidence in GitHub workflows.