Skip to content

Commit

Permalink
update readme file with committing your changes
Browse files Browse the repository at this point in the history
  • Loading branch information
kapmaurya committed Oct 30, 2024
1 parent f5dc15f commit 0e37011
Showing 1 changed file with 1 addition and 32 deletions.
33 changes: 1 addition & 32 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,39 +31,8 @@ Mifos boasts an active and vibrant contributor community, Please join us on [sla
### [Development Setup](https://github.com/openMF/mobile-wallet/wiki/Development-Setup)


### **Committing Your Changes**
### [Committing Your Changes](https://github.com/openMF/mobile-wallet/wiki/Committing-Your-Changes)

When you've finished making your changes and have tested them locally, it's time to commit your work:

1. **Stage Changes**

Use the following command to stage all changes:

```bash
git add .
```

This adds all modified and new files to the staging area, preparing them for the commit.

2. **Commit Changes**

Commit your changes with a meaningful commit message that describes the purpose of your changes:

```bash
git commit -m "Your commit message goes here"
```

A good commit message is concise and provides enough context about the changes made. Mifos follows its own commit style guidelines that you must follow. Learn more about it [here](https://github.com/openMF/mifos-mobile-cn/blob/master/COMMIT_STYLE.md).

3. **Push Changes**

Push your changes to your forked repository on GitHub:

```bash
git push origin new-branch-name
```

Replace **`new-branch-name`** with the name of the branch you created earlier.

### **Making a Pull Request**

Expand Down

0 comments on commit 0e37011

Please sign in to comment.