- Firstly, fork our repo by clicking the fork button on top right corner.
- Clone that forked repo to your local system
git clone https://github.com/<your-github-username>/Notepad
- Navigate to the cloned repo folder in your local system.
cd Notepad
- Create a new branch for making changes.
git checkout -b <your-branch-name>
- Make changes and add them to git staging and commit using a message related to what you changed.
git add <folder-or-file-paths>
git commit -m "you commit message"
- Push your local commits to the remote repository
git push origin <your-branch-name>
Hoooray 🎉 !!! You've made your first contribution to Notepad! 🎊
After this, the maintainers will review the PR and will merge it if it helps move the LinkFree project forward. Otherwise, it will be given constructive feedback and suggestions for the changes needed to add the PR to the codebase.
In order to discuss changes, you are welcome to open an issue about what you would like to contribute. Enhancements are always encouraged and appreciated.