I merged my development branch to staging branch but I can't see the merge commit on the staging branch. What am I doing wrong? My workflow is as follows.
- Checkout development branch and make some changes
- Pull development branch
- Commit development branch to local repo
git checkout -q staging
git merge development
git push origin staging:staging
git checkout -q development
git push origin development:development
I use VS Code GUI for git tasks. I have another dev working in the same project. For some reason in both branches, the commit history looks exactly the same. Earlier it used to show the merge commit without any issue but not anymore. Neither of us are able to figure out where things went wrong.