Rebasing is an alternative to merging. It rewrites history and applies changes from one branch to another in a linear fashion.
Task 9: Rebase your branch.This applies the changes from feature-branch
on top of the main
branch.
git checkout feature-branch
git rebase main
Cherry-picking allows you to apply a specific commit from one branch to another.
Task 10: Cherry-pick a commit.
git cherry-pick <commit-hash>