I have two branches, Master and Develop. I will like to "copy" the content of Develop in Master so:
Master <- Develop
According to documentation:
git rebase <base>
Rebase the current branch onto base, which can be any kind of commit reference (an ID, a branch name, a tag, or a relative reference to HEAD).
But Im not very sure about the terminology, if I check out to Master and from there i do git rebase develop am I coping everything from develop to master or the other way?