Welcome to the Hacktoberfest 2024 repository! 🎉 Follow these steps to make your contribution:
-
Fork this repository.
-
Clone your forked copy of the project.
git clone --depth 1 https://github.com/<your_name>/Hacktoberfest24.git
-
Navigate to the project directory 📁.
cd Hacktoberfest24
-
Add a reference (remote) to the original repository.
git remote add upstream https://github.com/mrigaankzoro/Hacktoberfest24.git
-
Check the remotes for this repository.
git remote -v
-
Always take a pull from the upstream repository to keep your master branch up-to-date with the main project (updated repository).
git pull upstream main
-
Create a new branch for your changes.
git checkout -b <your_branch_name>
-
Perform your desired changes to the code base.
-
Track your changes ✅.
git add .
-
Commit your changes with a relevant message.
git commit -m "Relevant message"
-
Push the committed changes in your feature branch to your remote repo.
git push -u origin <your_branch_name>
-
To create a pull request, click on "Compare & pull request" in your repository on GitHub. Ensure you compare your feature branch to the desired branch of the repository you're making a PR to.
-
Add an appropriate title and description to your pull request explaining your changes and efforts.
-
Click on "Create Pull Request".
Happy coding! 🎉