You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+1-25
Original file line number
Diff line number
Diff line change
@@ -37,32 +37,8 @@ Mifos boasts an active and vibrant contributor community, Please join us on [sla
37
37
### [**Making a Pull Request**](https://github.com/openMF/mobile-wallet/wiki/Making-a-Pull-Request)
38
38
39
39
40
-
### **Squashing Your Commits**
40
+
### [**Squashing Your Commits**](https://github.com/openMF/mobile-wallet/wiki/Squashing-Your-Commits)
41
41
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.
0 commit comments