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
+6
Original file line number
Diff line number
Diff line change
@@ -85,6 +85,7 @@
85
85
*[Check if the change was a part of a release.](https://github.com/git-tips/tips#check-if-the-change-was-a-part-of-a-release)
86
86
*[Dry run. (any command that supports dry-run flag should do.)](https://github.com/git-tips/tips#dry-run-any-command-that-supports-dry-run-flag-should-do)
87
87
*[Marks your commit as a fix of a previous commit](https://github.com/git-tips/tips#marks-your-commit-as-a-fix-of-a-previous-commit)
88
+
*[squash fixup commits normal commits.](https://github.com/git-tips/tips#squash-fixup-commits-normal-commits)
88
89
89
90
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
90
91
<!-- @doxie.inject end toc -->
@@ -593,5 +594,10 @@ git clean -fd --dry-run
593
594
git commit --fixup <SHA-1>
594
595
```
595
596
597
+
## squash fixup commits normal commits.
598
+
```sh
599
+
git rebase -i --autosquash
600
+
```
601
+
596
602
<!-- Don’t remove or change the comment below – that can break automatic updates. More info at <http://npm.im/doxie.inject>. -->
0 commit comments