Say, I am in a feature/branch and before i push i wanted to merge develop to feature/branch. Currently this is what i do.
Currently on feature branch.
- checkout develop
- pull develop to update from origin
- checkout again feature branch
- merge develop to feature branch
Basically, wanted to execute #1 and #2 without leaving the feature branch.
Thank you.