When you rebase, Git finds the base of your branch,finds all the commits between that base and HEAD and re-plays those commits on the HEAD of the branch you're rebasing onto. Git actually creates new commits that represent what your changes look like on top of master.
When you rebase, Git finds the base of your branch,finds all the commits between that base and HEAD and re-plays those commits on the HEAD of the branch you're rebasing onto. Git actually creates new commits that represent what your changes look like on top of master.
Simply comment /rebase to trigger the action.