Thank you for considering contributing to Note-Vault. We welcome contributions from everyone willing to help improve the project or add new features.
- Contributing to Note-Vault
- First Time Contributor
- I Want To Contribute
- Fork the Project
- Create a New Branch
- Work on the Issue Assigned
- Commit
- Push Local Changes
- Pull Request
- Review
If you're new to contributing to open-source projects, here's a brief guide to get you started:
- Check out the website to get an idea of the app.
- Look through the list of issues to find something that interests you.
Before starting, please:
- Check for existing issues before creating a new one.
- Only work on an issue if it has been assigned to you to avoid duplicate efforts.
- Star & Fork this repository to create a local copy on your GitHub profile.
bash git clone https://github.com/Note-Vault/Note-Vault.git
- Create a new branch for your feature or bug fix.
bash git checkout -b branch_name
- Make your changes and add all necessary files.
- Stage your changes.
bash git add .
or
bash git add <file1> <file2>
- Commit your changes with a descriptive message.
bash git commit -m "Your descriptive commit message"
- Push your changes to your remote repository.
bash git push -u origin branch_name
- Go to your repository on GitHub and click on "Compare & pull requests".
- Add a title and description to your pull request.
Wait for your pull request to be reviewed. Incorporate any feedback from the reviewers.