Rebasing is a way to integrate changes from one branch into another. Unlike merge
, which creates a new commit to combine the histories of the two branches, rebase
moves or combines a sequence of commits to a new base commit. This can help keep your commit history linear and more readable.
# Rebase the current branch onto another branch
git rebase <branch>
# Rebase interactively, allowing you to squash, reword, or drop commits
git rebase -i <branch>
# Continue rebase after resolving conflicts
git rebase --continue
# Skip the current commit during a rebase
git rebase --skip
# Abort a rebase and return to the original branch state
git rebase --abort