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.
-
Open GitHub Desktop: Launch GitHub Desktop and log in to your GitHub account if you haven't already.
-
Clone the Repository:
- If you haven't cloned the repository yet, you can do so by clicking on the "File" menu and selecting "Clone Repository."
- Choose the repository from the list of repositories on GitHub and clone it to your local machine.
-
Switch to the Correct Branch:
- Ensure you are on the branch that you want to submit a pull request for.
- If you need to switch branches, you can do so by clicking on the "Current Branch" dropdown menu and selecting the desired branch.
-
Make Changes: Make your changes to the code or files in the repository using your preferred code editor.
-
Commit Changes:
- In GitHub Desktop, you'll see a list of the files you've changed. Check the box next to each file you want to include in the commit.
- Enter a summary and description for your changes in the "Summary" and "Description" fields, respectively. Click the "Commit to " button to commit your changes to the local branch.
-
Push Changes to GitHub: After committing your changes, click the "Push origin" button in the top right corner of GitHub Desktop to push your changes to your forked repository on GitHub.
-
Create a Pull Request:
- Go to the GitHub website and navigate to your fork of the repository.
- You should see a button to "Compare & pull request" between your fork and the original repository. Click on it.
-
Review and Submit:
- On the pull request page, review your changes and add any additional information, such as a title and description, that you want to include with your pull request.
- Once you're satisfied, click the "Create pull request" button to submit your pull request.
-
Wait for Review: Your pull request will now be available for review by the project maintainers. They may provide feedback or ask for changes before merging your pull request into the main branch of the repository.