Rebases the current branch onto another branch.
git checkout <branch>
to switch to the <branch>
to be rebased.git rebase <base-branch>
to rebase the current branch onto <base-branch>
.git checkout <branch>
git rebase <base-branch>
git checkout patch-1
git rebase master
# `patch-1` is rebased onto `master`
git checkout patch-2
git fetch origin # Fetch latest remote branches
git rebase origin/master
# `patch-2` is rebased onto the latest remote `master`
Git, Branch
Copies a file from another branch to the current branch.
Git, Branch
Performs an interactive rebase.
Git, Branch
Prints the current branch name.