Skip to content

Latest commit

 

History

History
65 lines (41 loc) · 2.47 KB

CONTRIBUTING.md

File metadata and controls

65 lines (41 loc) · 2.47 KB

How to Contribute

For new comers, this quick links will definitely help you.

For who are new to open source world


Pull request Making a Pull Request

  1. Firstly, fork our repo by clicking the fork button on top right corner.
  2. Clone that forked repo to your local system
git clone https://github.com/<your-github-username>/Notepad
  1. Navigate to the cloned repo folder in your local system.
cd Notepad
  1. Create a new branch for making changes.
git checkout -b <your-branch-name>
  1. 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"
  1. Push your local commits to the remote repository
git push origin <your-branch-name>
  1. Create a Pull Request

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.


issue Making issues for improvements

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.

All the very best from the community.! 🤝