I have a dev
branch and a main
branch that are used to create a testing and production dashboard respectively.
My workflow in GitHub Desktop is to create a feature branch that I merge into dev
and every time I create a PR from dev
to main
, I see the full commit history of dev
instead of just the new changes. What should my workflow be to only see the new commits?
After merging feature-*
into dev
and then dev
into main
, I always use “merge into current branch” from main
into dev
. Should I be using one of these other options instead?
Note: I have seen some related posts but they use CLI and I am looking for a solution I can do within GitHub Desktop.
3