Skip to content

Commit dd46ba7

Browse files
committed
update readme file with Squashing your Commits
1 parent eb5d02e commit dd46ba7

File tree

1 file changed

+1
-25
lines changed

1 file changed

+1
-25
lines changed

README.md

+1-25
Original file line numberDiff line numberDiff line change
@@ -37,32 +37,8 @@ Mifos boasts an active and vibrant contributor community, Please join us on [sla
3737
### [**Making a Pull Request**](https://github.com/openMF/mobile-wallet/wiki/Making-a-Pull-Request)
3838

3939

40-
### **Squashing Your Commits**
40+
### [**Squashing Your Commits**](https://github.com/openMF/mobile-wallet/wiki/Squashing-Your-Commits)
4141

42-
It is common for pull requests to undergo multiple rounds of review before being merged. To keep the Git history clean and organized, you should always squash your commits before finalizing the merge. Here's how you can do it:
43-
44-
1. Squash your commits:
45-
46-
```bash
47-
git rebase -i HEAD~x
48-
```
49-
50-
Replace **`x`** with the number of commits you want to squash. An interactive rebase will open, allowing you to choose how to combine the commits. Change **`pick`** to **`squash`** (or simply **`s`**) for all but the topmost commit. Save and exit the editor.
51-
52-
2. Amend the commit message if needed.
53-
54-
```bash
55-
git commit --amend
56-
```
57-
58-
3. Force push the changes to your forked repository:
59-
60-
```bash
61-
git push --force origin your-branch-name
62-
```
63-
64-
Please note that force pushing rewrites the Git history, so use it with caution.
65-
6642

6743
### **Solving Merge Conflicts**
6844

0 commit comments

Comments
 (0)