My current workflow is:
- work on some branch
work_branch
- commit the changes
- Want to merge into
master
, but still work on that same branch later - checkout
master
- merge
work_branch
intomaster
- checkout
work_branch
I would like to save myself the hassle of checking out master
and then checking out work_branch
.
Instead, I would like to somehow "push" the changes to master
, without making it the active branch.
I was not able to find a duplicate on this, but I guess I just lack the terminology.