A repository to help you start your open source journey! 💫
- Add your name in the
Contributors.md
file to make your first pull request 🚀
How to make a Pull Request If you think that you can add a new feature or want to fix a bug. You can start contributing by following the below instructions:
- Open Git Bash Here
- Create a Git repository
- Run command
git init
- Fork the repository
- Clone your forked repository of the project
git clone https://github.com/<your_username>/repository_name.git
- Navigate to the project directory
- Add a reference(remote) to the original repository
git remote add upstream https://github.com/repository_owner/repository_name.git
- Check the remotes for this repository
git remote -v
- Always take a pull from the upstream repository to your main branch to keep it updated as per the main project repository
git pull upstream main
- Create a new branch (prefer a branch name that relates to your assigned issue
git checkout -b <YOUR_BRANCH_NAME>
- Perform your desired changes to the code base
git status
git diff
git add . <\files_that_you_made_changes>
git commit -m "relavant message"
git push -u origin <your_branch_name>
Congratulations🎉, you have made a PR to the repository. Wait for your submission to be accepted and your PR to be merged by a maintainer. Show some ❤️ by starring this repository and do follow me for more updates✨