Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update CONTRIBUTING.md #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,11 +54,23 @@ We follow these guidelines for contributing:

6. Test your changes locally to ensure they work as expected.

7. Commit your changes with clear and concise commit messages:
7. After Making change/Contribution/Modifying stage the changes to a file:

```bash
git add filename
```
or

to stage changes in all directories
```bash
git add .
```

8. Commit your changes with clear and concise commit messages:
```bash
git commit -m "Add feature: your feature description"

8. Create a pull request (PR) to the `main` repository's `main` branch.
9. Create a pull request (PR) to the `main` repository's `main` branch.

## Setting Up the Development Environment
To set up the development environment locally, follow these steps:
Expand Down
Loading