There are two branches. The main branch and branch with one feature. But the feature branch is in conflict with the main. People told me, that I should rebase the feature branch against the main.
Does it mean git rebase origin/main
(and I am on the feature branch) or git rebase feature_branch
(and I am on the main branch)?
It is important that during the git merge PRODUCTION
there should be no conflict and it has to be solved by the command rebase. How?