Git Squashing Commits: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 33: Line 33:


  git push --force
  git push --force
If for some reason you want to only push the current branch:
git push origin <''branch-name''> --force

Revision as of 22:42, 30 July 2019

Internal

Procedure

To squash the most 2 recent commits on the current branch:

git rebase -i HEAD~2

This will enter an interactive editor, that will allow to specify the commits to squash. In the editor, replace the words "pick" with "squash" next to the commits you want to squash into the commit before it. The commits are listed from old to new, so "before" means the commit above.

Upon applying repository changes, the Git client will give us a change to review and modify the comment associated with the commit. This will be done interactively in the editor:

# This is a combination of 2 commits.
# This is the 1st commit message:

Existing comment for commit 1

# This is the commit message #2:

Existing comment for commit 2

# Please enter the commit message for your changes. Lines starting
# with '#' will be ignored, and an empty message aborts the commit.

After saving, Git will warn that the local branch and the upstream branch have diverged, and you have 'x' and 'y' different commits each respectively.

To reconcile the local and the remote branch, push with "--force" (otherwise the push will be rejected because the tip of your current branch is behind its remote counterpart)

git push --force

If for some reason you want to only push the current branch:

git push origin <branch-name> --force