Given the following branches
A---B---C topic (HEAD)
/
D---E---F---G master
and running the command
git rebase master
Does that mean, that we are
- rebasing
topic/HEAD
onmaster
, or... - rebasing
master
withtopic/HEAD
?
I can't infer how I would express this action in a sentence from the git-rebase
man pages.
PS: I know what rebase
is and what it does, I just want to know "how to speak" the command, since the first argument is actually called upstream
.