From 4e5199b05a220b0c63b51a5435077d635772baf7 Mon Sep 17 00:00:00 2001 From: Yury Delendik Date: Tue, 4 Mar 2014 11:18:14 -0800 Subject: [PATCH] Updated Squashing Commits (markdown) --- Squashing-Commits.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Squashing-Commits.md b/Squashing-Commits.md index 5a147a6..e52f17e 100644 --- a/Squashing-Commits.md +++ b/Squashing-Commits.md @@ -39,4 +39,4 @@ git push --force origin super-feature ``` git rebase -i HEAD~5 ``` - Change `pick` to `squash` for last four and update the commit message in the editor. + Change `pick` to `squash` (or `fixup`) for last four and update the commit message in the editor, then `git push --force origin super-feature`.